From d9189b246a688e7eb798264f2aa39d0787d004fd Mon Sep 17 00:00:00 2001 From: Simone Di Luzio Date: Sun, 24 Jul 2022 00:08:20 +0200 Subject: [PATCH] fix https://github.com/actix/actix-web/issues/1313 --- actix-http/src/h1/dispatcher.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/actix-http/src/h1/dispatcher.rs b/actix-http/src/h1/dispatcher.rs index c2ddc06ba..72cbfbee5 100644 --- a/actix-http/src/h1/dispatcher.rs +++ b/actix-http/src/h1/dispatcher.rs @@ -1194,7 +1194,8 @@ where let state_is_none = inner_p.state.is_none(); // read half is closed; we do not process any responses - if inner_p.flags.contains(Flags::READ_DISCONNECT) && state_is_none { + // fix https://github.com/actix/actix-web/issues/1313 + if inner_p.flags.contains(Flags::READ_DISCONNECT) { trace!("read half closed; start shutdown"); inner_p.flags.insert(Flags::SHUTDOWN); }