We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using the -keepalive-time option, grpcurl sends keepalive pings to the server at half the expected rate.
-keepalive-time
grpcurl
./grpcurl -keepalive-time 60 1.2.3.4:123 my.Service/ExtremelySlowAPI
tcpdump
tcpdump -i eth0 dst 1.2.3.4
You should see keepalive ping packets sent on the wire every 60 seconds.
tcpdump reports 2 keepalive ping packets sent at once, every 120 seconds.
The text was updated successfully, but these errors were encountered:
This should be fixed as of v1.5.0 (as part of updating grpc-go dependency in #136).
Sorry, something went wrong.
No branches or pull requests
When using the
-keepalive-time
option,grpcurl
sends keepalive pings to the server at half the expected rate.Steps to reproduce
tcpdump
to monitor packets being sent fromgrpcurl
to the service:Expected
You should see keepalive ping packets sent on the wire every 60 seconds.
Observed
tcpdump
reports 2 keepalive ping packets sent at once, every 120 seconds.The text was updated successfully, but these errors were encountered: