Easwar Swaminathan
Easwar Swaminathan
https://github.com/grpc/grpc-go/runs/7564053483?check_suite_focus=true
https://github.com/grpc/grpc-go/runs/7565717050?check_suite_focus=true
Fixed through https://github.com/grpc/grpc-go/pull/5562.
> When network issue occurs, our app will eat more memory than expected How much memory did you expect your app to consume, and how much did it end up...
Great !! Go for it !! Feel free to ask us any clarifying questions.
Assigning to @menghanl since you have a PR open for this.
> A separate issue should be filed to update [pkg.go.dev/cloud.google.com/go/compute/metadata#OnGCE](https://pkg.go.dev/cloud.google.com/go/compute/metadata#OnGCE) Filed https://github.com/googleapis/google-cloud-go/issues/6037
Thanks @lysu for reporting the problem and providing a way to reproduce it. I was able to reproduce it with the the helloworld example as suggested by you. Also, I...
I also verified that getting rid of the `+1` in https://github.com/grpc/grpc-go/blob/master/rpc_util.go#L744 and https://github.com/grpc/grpc-go/blob/master/rpc_util.go#L750 also gets things to work. But I'm not sure if that is the correct fix at this...
The following fix would make it work: ```golang // MaxCallRecvMsgSize returns a CallOption which sets the maximum message size // in bytes the client can receive. func MaxCallRecvMsgSize(bytes int) CallOption...