| 1234567891011121314151617181920212223242526272829 |
- commit 9c2158fd379c9c55174fff4751065434105483ae
- Author: Ryan Brandenburg <[email protected]>
- Date: Wed Jan 31 11:49:18 2018 -0800
- Skip flaky test
- diff --git a/test/Kestrel.FunctionalTests/ConnectionLimitTests.cs b/test/Kestrel.FunctionalTests/ConnectionLimitTests.cs
- index 5ed40564ab8..db967776edf 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;
|