signalr connection fails if can't connect in 5 seconds.

pull/38/merge
kayone 11 years ago
parent 5ab873150e
commit 197cad7fb5

@ -121,10 +121,17 @@ namespace NzbDrone.Integration.Test
} }
}); });
var retryCount = 0;
while (_signalrConnection.State != ConnectionState.Connected) while (_signalrConnection.State != ConnectionState.Connected)
{ {
Console.WriteLine("Connecting to signalR" + _signalrConnection.State); if (retryCount > 25)
{
Assert.Fail("Couldn't establish signalr connection. State: {0}", _signalrConnection.State);
}
retryCount++;
Console.WriteLine("Connecting to signalR" + _signalrConnection.State);
Thread.Sleep(200); Thread.Sleep(200);
} }

Loading…
Cancel
Save