From 2a5c4320d205000264a112404746edc1e63b4e91 Mon Sep 17 00:00:00 2001 From: Andrew Stanton-Nurse Date: Wed, 15 Feb 2017 14:15:47 -0800 Subject: [PATCH] increase retry count in autobahn tests --- .../Autobahn/AutobahnTester.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Microsoft.AspNetCore.WebSockets.Internal.ConformanceTest/Autobahn/AutobahnTester.cs b/test/Microsoft.AspNetCore.WebSockets.Internal.ConformanceTest/Autobahn/AutobahnTester.cs index 6c3fea82f8..de8eca2c1a 100644 --- a/test/Microsoft.AspNetCore.WebSockets.Internal.ConformanceTest/Autobahn/AutobahnTester.cs +++ b/test/Microsoft.AspNetCore.WebSockets.Internal.ConformanceTest/Autobahn/AutobahnTester.cs @@ -1,4 +1,4 @@ -// Copyright (c) .NET Foundation. All rights reserved. +// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; @@ -127,7 +127,7 @@ namespace Microsoft.AspNetCore.WebSockets.Internal.ConformanceTest.Autobahn var resp = await RetryHelper.RetryRequest(() => { return client.GetAsync(result.ApplicationBaseUri); - }, logger, result.HostShutdownToken, retryCount: 15); // High retry count because Travis macOS is slow + }, logger, result.HostShutdownToken); // High retry count because Travis macOS is slow resp.EnsureSuccessStatusCode(); // Add to the current spec