diff options
author | Craig Tiller <ctiller@google.com> | 2016-10-18 09:26:18 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2016-10-18 09:26:18 -0700 |
commit | a81c3111717fd549c065e493a5f589236657247c (patch) | |
tree | 395a67dbb0111b24978f09c387bc08b88f7ef8bd /src/core/ext | |
parent | 14c836fcd10e4f96ae1f4ac22fe43d42e2e293ba (diff) |
Fix wakeup bug
Diffstat (limited to 'src/core/ext')
-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 b1dd974011..97780d90f2 100644 --- a/src/core/ext/transport/chttp2/transport/chttp2_transport.c +++ b/src/core/ext/transport/chttp2/transport/chttp2_transport.c @@ -1412,6 +1412,7 @@ void grpc_chttp2_cancel_stream(grpc_exec_ctx *exec_ctx, } if (due_to_error != GRPC_ERROR_NONE && !s->seen_error) { s->seen_error = true; + grpc_chttp2_maybe_complete_recv_trailing_metadata(exec_ctx, t, s); } grpc_chttp2_mark_stream_closed(exec_ctx, t, s, 1, 1, due_to_error); } |