diff --git a/common/client-libs/gateway-client/src/client.rs b/common/client-libs/gateway-client/src/client.rs index a27ec472ba..87e9fa758a 100644 --- a/common/client-libs/gateway-client/src/client.rs +++ b/common/client-libs/gateway-client/src/client.rs @@ -831,6 +831,7 @@ impl GatewayClient { should_reconnect_on_failure: false, reconnection_attempts: DEFAULT_RECONNECTION_ATTEMPTS, reconnection_backoff: DEFAULT_RECONNECTION_BACKOFF, + negotiated_protocol: None, shutdown, } } @@ -862,6 +863,7 @@ impl GatewayClient { should_reconnect_on_failure: self.should_reconnect_on_failure, reconnection_attempts: self.reconnection_attempts, reconnection_backoff: self.reconnection_backoff, + negotiated_protocol: self.negotiated_protocol, shutdown, } }