Extra logging with Truncated message on read closed

pull/21539/head
Yash Tibrewal 5 years ago
parent 4bfc638305
commit 6be9f613b4
  1. 4
      src/core/ext/transport/chttp2/transport/chttp2_transport.cc

@ -3008,8 +3008,8 @@ void Chttp2IncomingByteStream::NextLocked(void* arg,
} }
} else if (s->read_closed) { } else if (s->read_closed) {
if (bs->remaining_bytes_ != 0) { if (bs->remaining_bytes_ != 0) {
s->byte_stream_error = s->byte_stream_error = GRPC_ERROR_CREATE_REFERENCING_FROM_STATIC_STRING(
GRPC_ERROR_CREATE_FROM_STATIC_STRING("Truncated message"); "Truncated message", &s->read_closed_error, 1);
grpc_core::ExecCtx::Run(DEBUG_LOCATION, bs->next_action_.on_complete, grpc_core::ExecCtx::Run(DEBUG_LOCATION, bs->next_action_.on_complete,
GRPC_ERROR_REF(s->byte_stream_error)); GRPC_ERROR_REF(s->byte_stream_error));
if (s->data_parser.parsing_frame != nullptr) { if (s->data_parser.parsing_frame != nullptr) {

Loading…
Cancel
Save