| 12345678910111213141516171819 |
- commit 53b46972691c0aa0edb27e0dbe961e2ea809814e
- Author: Stephen Halter <[email protected]>
- Date: Thu Nov 9 16:56:08 2017 -0800
- Show cause of connection failure in test (#2155)
- diff --git a/test/Kestrel.FunctionalTests/ConnectionLimitTests.cs b/test/Kestrel.FunctionalTests/ConnectionLimitTests.cs
- index 0e63b8e88be..49c1e7ab630 100644
- --- a/test/Kestrel.FunctionalTests/ConnectionLimitTests.cs
- +++ b/test/Kestrel.FunctionalTests/ConnectionLimitTests.cs
- @@ -174,7 +174,7 @@ namespace Microsoft.AspNetCore.Server.Kestrel.FunctionalTests
- }
- catch (Exception ex)
- {
- - closedTcs.TrySetException(ex);
- + openedTcs.TrySetException(ex);
- }
- });
-
|