The scenario is:
SignalR Server is down for upgrade/maintenance
Client tries to connect to SignalR Server initially.
workaround:
wrap _HubConnectionManager.Initialize(); in a try...catch... block that squelches the error.
Wondering if this is the best case, or if we should squelch it within the HubConnectionManager class itself?
The scenario is:
SignalR Server is down for upgrade/maintenance
Client tries to connect to SignalR Server initially.
workaround:
wrap
_HubConnectionManager.Initialize();in a try...catch... block that squelches the error.Wondering if this is the best case, or if we should squelch it within the HubConnectionManager class itself?