aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Integration/ExternalBridge/ExternalBridgeService.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/Tango.Integration/ExternalBridge/ExternalBridgeService.cs')
-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) =>
{