From 9c2158fd379c9c55174fff4751065434105483ae Mon Sep 17 00:00:00 2001 From: Ryan Brandenburg Date: Wed, 31 Jan 2018 11:49:18 -0800 Subject: [PATCH] Skip flaky test --- test/Kestrel.FunctionalTests/ConnectionLimitTests.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/Kestrel.FunctionalTests/ConnectionLimitTests.cs b/test/Kestrel.FunctionalTests/ConnectionLimitTests.cs index 5ed40564ab..db967776ed 100644 --- a/test/Kestrel.FunctionalTests/ConnectionLimitTests.cs +++ b/test/Kestrel.FunctionalTests/ConnectionLimitTests.cs @@ -121,7 +121,8 @@ namespace Microsoft.AspNetCore.Server.Kestrel.FunctionalTests { // this may throw IOException, depending on how fast Kestrel closes the socket await connection.SendEmptyGetAsKeepAlive(); - } catch { } + } + catch { } // connection should close without sending any data await connection.WaitForConnectionClose().TimeoutAfter(TestConstants.DefaultTimeout); @@ -132,7 +133,7 @@ namespace Microsoft.AspNetCore.Server.Kestrel.FunctionalTests } } - [Fact] + [Fact(Skip = "https://github.com/aspnet/KestrelHttpServer/issues/2282")] public async Task ConnectionCountingReturnsToZero() { const int count = 100;