Skip to content
代码片段 群组 项目
未验证 提交 e3509ecf 编辑于 作者: James Newton-King's avatar James Newton-King 提交者: GitHub
浏览文件

QUIC: Don't complete writes on abort (#43630)

上级 d34e6677
No related branches found
No related tags found
无相关合并请求
......@@ -26,6 +26,7 @@
"src\\Middleware\\Diagnostics\\src\\Microsoft.AspNetCore.Diagnostics.csproj",
"src\\Middleware\\HostFiltering\\src\\Microsoft.AspNetCore.HostFiltering.csproj",
"src\\Middleware\\HttpOverrides\\src\\Microsoft.AspNetCore.HttpOverrides.csproj",
"src\\Middleware\\StaticFiles\\src\\Microsoft.AspNetCore.StaticFiles.csproj",
"src\\ObjectPool\\src\\Microsoft.Extensions.ObjectPool.csproj",
"src\\Security\\Authentication\\Core\\src\\Microsoft.AspNetCore.Authentication.csproj",
"src\\Security\\Authorization\\Core\\src\\Microsoft.AspNetCore.Authorization.csproj",
......
......@@ -465,7 +465,7 @@ internal partial class QuicStreamContext : TransportConnection, IPooledStream, I
}
finally
{
ShutdownWrite(_shutdownWriteReason ?? _shutdownReason ?? shutdownReason);
ShutdownWrite(shutdownReason);
await waitForWritesClosedTask;
......@@ -525,10 +525,14 @@ internal partial class QuicStreamContext : TransportConnection, IPooledStream, I
{
lock (_shutdownLock)
{
_shutdownReason = shutdownReason ?? SendGracefullyCompletedException;
_shutdownReason = _shutdownWriteReason ?? _shutdownReason ?? shutdownReason ?? SendGracefullyCompletedException;
QuicLog.StreamShutdownWrite(_log, this, _shutdownReason.Message);
_stream.CompleteWrites();
// Only complete writes for a graceful shutdown.
if (_shutdownReason == SendGracefullyCompletedException)
{
_stream.CompleteWrites();
}
}
}
catch (Exception ex)
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册