Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions source/extensions/config_subscription/grpc/grpc_mux_impl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -597,6 +597,9 @@ void GrpcMuxImpl::onEstablishmentFailure(bool) {
}

void GrpcMuxImpl::queueDiscoveryRequest(absl::string_view queue_item) {
if (shutdown_) {
return;
}
if (!grpc_stream_->grpcStreamAvailable()) {
ENVOY_LOG(debug, "No stream available to queueDiscoveryRequest for {}", queue_item);
return; // Drop this request; the reconnect will enqueue a new one.
Expand Down
Loading