aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Integration
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2025-03-25 03:46:24 +0200
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2025-03-25 03:46:24 +0200
commit8b6bed67b054c79ea35173504efea7060195cd55 (patch)
treebaa183cbaf48e236c0d5d15aa75b837e11615fe3 /Software/Visual_Studio/Tango.Integration
parent968bf37b587363c2dc750ab7a793ff0eb4566a53 (diff)
parentbefb7c57d2f34196ccab399384fc8ac2fc2c0ddd (diff)
downloadTango-8b6bed67b054c79ea35173504efea7060195cd55.tar.gz
Tango-8b6bed67b054c79ea35173504efea7060195cd55.zip
External Bridge Delay for PPC.
Diffstat (limited to 'Software/Visual_Studio/Tango.Integration')
-rw-r--r--Software/Visual_Studio/Tango.Integration/ExternalBridge/ExternalBridgeService.cs1
1 files changed, 1 insertions, 0 deletions
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<String>("OnSessionCreated", OnSignalRSessionCreated);
+ _connection.TransportConnectTimeout = TimeSpan.FromMinutes(2);
_connection.Start();
_connection.StateChanged += (x) =>
{