From 400d71bf07ed9403b9cf2ea0747ece86f42486a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C4=99drzej=20Stuczy=C5=84ski?= Date: Fri, 9 Feb 2024 14:57:49 +0000 Subject: [PATCH] ibid --- common/client-libs/gateway-client/src/client.rs | 2 ++ 1 file changed, 2 insertions(+) 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, } }