diff options
author | Craig Tiller <ctiller@google.com> | 2017-01-30 14:27:21 -0800 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2017-01-30 14:27:21 -0800 |
commit | 1a5ead340558e8491c0a1fec74129413cfe5888a (patch) | |
tree | f9e9111039126eb88ece4e7b42e5e19f6b046b0e /src | |
parent | fa0579511b21cb7e75b01469678f154f4e1c4033 (diff) |
Accept and count deadline exceeded
Diffstat (limited to 'src')
-rw-r--r-- | src/core/ext/transport/chttp2/transport/chttp2_transport.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/ext/transport/chttp2/transport/chttp2_transport.c b/src/core/ext/transport/chttp2/transport/chttp2_transport.c index d7cc7314c3..692eb3f902 100644 --- a/src/core/ext/transport/chttp2/transport/chttp2_transport.c +++ b/src/core/ext/transport/chttp2/transport/chttp2_transport.c @@ -406,7 +406,8 @@ static void init_transport(grpc_exec_ctx *exec_ctx, grpc_chttp2_transport *t, } } - t->ping_state.pings_before_data_required = t->ping_policy.max_pings_without_data; + t->ping_state.pings_before_data_required = + t->ping_policy.max_pings_without_data; grpc_chttp2_initiate_write(exec_ctx, t, false, "init"); post_benign_reclaimer(exec_ctx, t); |