port change from AutobahnTester in SignalR (#148)

We increased the retry count (by just removing ours and using the default) because the app seems to be slow to start on macOS
This commit is contained in:
Andrew Stanton-Nurse 2017-03-09 10:14:42 -08:00 committed by GitHub
parent c36fcbab2e
commit 37b0df7406
1 changed files with 1 additions and 1 deletions

View File

@ -131,7 +131,7 @@ namespace Microsoft.AspNetCore.WebSockets.ConformanceTest.Autobahn
{
cancellationToken.ThrowIfCancellationRequested();
return client.GetAsync(result.ApplicationBaseUri);
}, logger, CancellationTokenSource.CreateLinkedTokenSource(cancellationToken, result.HostShutdownToken).Token, retryCount: 5);
}, logger, CancellationTokenSource.CreateLinkedTokenSource(cancellationToken, result.HostShutdownToken).Token);
resp.EnsureSuccessStatusCode();
cancellationToken.ThrowIfCancellationRequested();