KestrelHttpServer 246 B

1234567891011121314151617181920212223242526272829
  1. commit 9c2158fd379c9c55174fff4751065434105483ae
  2. Author: Ryan Brandenburg <[email protected]>
  3. Date: Wed Jan 31 11:49:18 2018 -0800
  4. Skip flaky test
  5. diff --git a/test/Kestrel.FunctionalTests/ConnectionLimitTests.cs b/test/Kestrel.FunctionalTests/ConnectionLimitTests.cs
  6. index 5ed40564ab8..db967776edf 100644
  7. --- a/test/Kestrel.FunctionalTests/ConnectionLimitTests.cs
  8. +++ b/test/Kestrel.FunctionalTests/ConnectionLimitTests.cs
  9. @@ -121,7 +121,8 @@ namespace Microsoft.AspNetCore.Server.Kestrel.FunctionalTests
  10. {
  11. // this may throw IOException, depending on how fast Kestrel closes the socket
  12. await connection.SendEmptyGetAsKeepAlive();
  13. - } catch { }
  14. + }
  15. + catch { }
  16. // connection should close without sending any data
  17. await connection.WaitForConnectionClose().TimeoutAfter(TestConstants.DefaultTimeout);
  18. @@ -132,7 +133,7 @@ namespace Microsoft.AspNetCore.Server.Kestrel.FunctionalTests
  19. }
  20. }
  21. - [Fact]
  22. + [Fact(Skip = "https://github.com/aspnet/KestrelHttpServer/issues/2282")]
  23. public async Task ConnectionCountingReturnsToZero()
  24. {
  25. const int count = 100;