From befb7c57d2f34196ccab399384fc8ac2fc2c0ddd Mon Sep 17 00:00:00 2001 From: Roy Ben Shabat Date: Tue, 25 Mar 2025 03:35:16 +0200 Subject: PPC External Bridge Delay. --- .../Tango.Integration/ExternalBridge/ExternalBridgeService.cs | 1 + 1 file changed, 1 insertion(+) (limited to 'Software/Visual_Studio/Tango.Integration') diff --git a/Software/Visual_Studio/Tango.Integration/ExternalBridge/ExternalBridgeService.cs b/Software/Visual_Studio/Tango.Integration/ExternalBridge/ExternalBridgeService.cs index ef66275cf..ccb0ef2a1 100644 --- a/Software/Visual_Studio/Tango.Integration/ExternalBridge/ExternalBridgeService.cs +++ b/Software/Visual_Studio/Tango.Integration/ExternalBridge/ExternalBridgeService.cs @@ -630,6 +630,7 @@ namespace Tango.Integration.ExternalBridge _connection = new HubConnection(SignalRConfiguration.Address); _proxy = _connection.CreateHubProxy(SignalRConfiguration.Hub); _proxy.On("OnSessionCreated", OnSignalRSessionCreated); + _connection.TransportConnectTimeout = TimeSpan.FromMinutes(2); _connection.Start(); _connection.StateChanged += (x) => { -- cgit v1.3.1