Merge pull request #2351 from ctiller/create-pull-request/patch-68c629c

Automated fix for refs/heads/statty
pull/37833/head
Craig Tiller 4 months ago committed by GitHub
commit f049916086
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 4
      src/core/ext/transport/chttp2/transport/chttp2_transport.cc

@ -3110,7 +3110,7 @@ static void benign_reclaimer_locked(
if (error.ok() && t->stream_map.empty()) {
// Channel with no active streams: send a goaway to try and make it
// disconnect cleanly
global_stats().IncrementRqConnectionsDropped();
grpc_core::global_stats().IncrementRqConnectionsDropped();
GRPC_TRACE_LOG(resource_quota, INFO)
<< "HTTP2: " << t->peer_string.as_string_view()
<< " - send goaway to free memory";
@ -3140,7 +3140,7 @@ static void destructive_reclaimer_locked(
GRPC_TRACE_LOG(resource_quota, INFO)
<< "HTTP2: " << t->peer_string.as_string_view()
<< " - abandon stream id " << s->id;
global_stats().IncrementRqCallsDropped();
grpc_core::global_stats().IncrementRqCallsDropped();
grpc_chttp2_cancel_stream(
t.get(), s,
grpc_error_set_int(GRPC_ERROR_CREATE("Buffers full"),

Loading…
Cancel
Save