From 37b0df7406d8c19e076367a6cdfa8f904e7a524e Mon Sep 17 00:00:00 2001 From: Andrew Stanton-Nurse Date: Thu, 9 Mar 2017 10:14:42 -0800 Subject: [PATCH] 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 --- .../Autobahn/AutobahnTester.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Microsoft.AspNetCore.WebSockets.ConformanceTest/Autobahn/AutobahnTester.cs b/test/Microsoft.AspNetCore.WebSockets.ConformanceTest/Autobahn/AutobahnTester.cs index 0f84b5a7a1..66e1781241 100644 --- a/test/Microsoft.AspNetCore.WebSockets.ConformanceTest/Autobahn/AutobahnTester.cs +++ b/test/Microsoft.AspNetCore.WebSockets.ConformanceTest/Autobahn/AutobahnTester.cs @@ -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();