John Howard
John Howard
Is there any workaround for this issue?
Thanks, I do get the same errors with that as well though
go1.15 does seem to work
[homedir.go.txt](https://github.com/dvyukov/go-fuzz/files/6744486/homedir.go.txt) Attached the instrumented code. It DOES have the fs.FileMode line mentioned in the error Snippet: ``` 181 │ //line /usr/local/google/home/howardjohn/go/pkg/mod/k8s.io/[email protected]/util/homedir/homedir.go:71 182 │ _go_fuzz_dep_.CoverTab[19912]++ 183 │ if info.IsDir() && func()...
Which I think is added here: https://github.com/dvyukov/go-fuzz/blob/master/go-fuzz-build/cover.go#L306
Similar: ``` $ gobin istio.io/test-infra/toolbox/githubctl@master failed to run go list -find -json istio.io/test-infra/toolbox/githubctl: exit status 1 go: k8s.io/[email protected] requires [email protected] requires github.com/Azure/[email protected]+incompatible (replaced by github.com/Azure/[email protected]+incompatible): missing go.sum entry; try 'go...
I took an attempt at this https://github.com/seratch/AWScala/pull/175
I think the issue you will find here is that your gRPC requests and HTTP2 requests are likely multiplexed over the same connection. cmux does matching at the connection level,...
I would recommend reading https://ahmet.im/blog/grpc-http-mux-go/, I think it addresses this
I don't think `cmux` can handle this. Since its a *connection* muxer. cloudrun (and Istio, FWIW) will multiplex gRPC and plain http2 methods onto the same connection. So if you...