sanjaypujare

Results 95 comments of sanjaypujare

> the exception happens at different iteration numbers on different runs of the same code And exception happens long before the maxConnectionAgeGrace of 300 seconds (5 minutes), is that right?...

Okay, so I looked at the code and I realized this is working as expected with your values of maxConnectionAge of 1 second and maxConnectionAgeGrace of 300 seconds. Note that...

@SanjayVas is this a regression? If yes, which is the earlier version where it was working?

You have 2 separate snippets of the code - I hope they are executed in the right order i.e. The `RpcViews` and `ZPageHandlers` registration first and then starting of the...

Couple of more suggestions: - enable debug/trace logging and check for message output - Replace ZPages with StackDriver and Google Cloud Monitoring and see if you see stats. If you...

There might be an existing issue but I could not find it. @ejona86 probably has more details.

Thanks @ejona86 . I see similarities with #8309. The comment https://github.com/grpc/grpc-java/issues/8309#issuecomment-881654181 might apply here i.e. "I suspect that if you add a Thread.sleep(1100) after the await termination the error will...

The constructor was looked up (using reflection) as `Class.forName("javax.net.ssl.SNIHostName").getConstructor(String.class)` on line 197. That will need to be changed to look up a constructor with `byte[]` type before your suggested change...