Skip to content

Commit f690aac

Browse files
authored
Fix GET_ConnectionsMakingMultipleRequests_AllSuccess (#43382)
1 parent 006d96f commit f690aac

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/Servers/Kestrel/Core/src/Internal/Http3/Http3ControlStream.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public void Abort(ConnectionAbortedException abortReason, Http3ErrorCode errorCo
9292
return;
9393
}
9494

95-
Log.Http3StreamAbort(_context.ConnectionId, errorCode, abortReason);
95+
Log.Http3StreamAbort(TraceIdentifier, errorCode, abortReason);
9696

9797
_errorCodeFeature.Error = (long)errorCode;
9898
_frameWriter.Abort(abortReason);

src/Servers/Kestrel/test/Interop.FunctionalTests/Http3/Http3RequestTests.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -651,6 +651,7 @@ private static Version GetProtocol(HttpProtocols protocol)
651651
}
652652

653653
[ConditionalFact]
654+
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/43374")]
654655
[MsQuicSupported]
655656
public async Task GET_ConnectionsMakingMultipleRequests_AllSuccess()
656657
{
@@ -659,7 +660,7 @@ public async Task GET_ConnectionsMakingMultipleRequests_AllSuccess()
659660

660661
var builder = CreateHostBuilder(context =>
661662
{
662-
requestCount++;
663+
Interlocked.Increment(ref requestCount);
663664
return Task.CompletedTask;
664665
});
665666

0 commit comments

Comments
 (0)