diff --git a/src/Servers/Kestrel/Core/src/Internal/Http3/Http3Connection.cs b/src/Servers/Kestrel/Core/src/Internal/Http3/Http3Connection.cs index c2db22acd8bd..82427c1cbabc 100644 --- a/src/Servers/Kestrel/Core/src/Internal/Http3/Http3Connection.cs +++ b/src/Servers/Kestrel/Core/src/Internal/Http3/Http3Connection.cs @@ -468,6 +468,10 @@ public async Task ProcessRequestsAsync(IHttpApplication appl Log.RequestProcessingError(_context.ConnectionId, ex); reason = ConnectionEndReason.ConnectionReset; } + else + { + reason = ConnectionEndReason.TransportCompleted; + } } error = ex; clientAbort = true;