From 95accc5f94804585d866c9162ed743af242d88b9 Mon Sep 17 00:00:00 2001 From: Sridhar Periyasamy Date: Fri, 8 Apr 2016 12:42:43 -0700 Subject: [PATCH] Increasing timeout to check Kestrel Server is up. KestrelSample app compilation time on CI machines is 16-20s and the test timeouts even before the kestrel server is up, which I suspect is the reason why kestrel tests are flaky. --- .../NetworkUtils/NetworkHelper.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Microsoft.DotNet.Tools.Tests.Utilities/NetworkUtils/NetworkHelper.cs b/test/Microsoft.DotNet.Tools.Tests.Utilities/NetworkUtils/NetworkHelper.cs index 54abccc86..75f54474a 100644 --- a/test/Microsoft.DotNet.Tools.Tests.Utilities/NetworkUtils/NetworkHelper.cs +++ b/test/Microsoft.DotNet.Tools.Tests.Utilities/NetworkUtils/NetworkHelper.cs @@ -11,7 +11,7 @@ namespace Microsoft.DotNet.Tools.Test.Utilities public class NetworkHelper { // in milliseconds - private const int Timeout = 20000; + private const int Timeout = 50000; public static string Localhost { get; } = "http://localhost";