diff options
author | Yuchen Zeng <zyc@google.com> | 2017-03-22 14:34:37 -0700 |
---|---|---|
committer | Yuchen Zeng <zyc@google.com> | 2017-04-04 00:03:28 -0700 |
commit | 114a848972e1243543f6eb7c4dc2be1d0867504a (patch) | |
tree | ddb954ee280ed3296d786d6140b974b752dc8a1a /src/core | |
parent | af5c505fc196e09233f8de70e9e850807aac003e (diff) |
Disable bdp probe in bad_ping test
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/ext/transport/chttp2/transport/chttp2_transport.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/ext/transport/chttp2/transport/chttp2_transport.c b/src/core/ext/transport/chttp2/transport/chttp2_transport.c index c4deb24e41..37553831ff 100644 --- a/src/core/ext/transport/chttp2/transport/chttp2_transport.c +++ b/src/core/ext/transport/chttp2/transport/chttp2_transport.c @@ -1471,6 +1471,7 @@ static void send_goaway(grpc_exec_ctx *exec_ctx, grpc_chttp2_transport *t, void grpc_chttp2_ping_strike(grpc_exec_ctx *exec_ctx, grpc_chttp2_transport *t) { + gpr_log(GPR_DEBUG, "PING strike"); if (++t->ping_recv_state.ping_strikes > t->ping_policy.max_ping_strikes && t->ping_policy.max_ping_strikes != 0) { send_goaway(exec_ctx, t, |