diff options
author | Viktor Söderqvist <[email protected]> | 2023-05-11 15:46:41 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2025-02-25 15:44:35 +0100 |
commit | 96d8e29908747ed032433f8edbcd218c7556a462 (patch) | |
tree | 31eb99faf5d18413f48f65713d8411df1c6f9799 /src | |
parent | 3f3ab8145ab8755527c5da30c2971dff91593e61 (diff) | |
download | gun-96d8e29908747ed032433f8edbcd218c7556a462.tar.gz gun-96d8e29908747ed032433f8edbcd218c7556a462.tar.bz2 gun-96d8e29908747ed032433f8edbcd218c7556a462.zip |
Send NO_ERROR in client-initiated graceful shutdown
Diffstat (limited to 'src')
-rw-r--r-- | src/gun_http2.erl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gun_http2.erl b/src/gun_http2.erl index 4903258..9b6353d 100644 --- a/src/gun_http2.erl +++ b/src/gun_http2.erl @@ -900,6 +900,7 @@ closing(Reason0, State=#http2_state{socket=Socket, transport=Transport, Reason = case Reason0 of normal -> no_error; owner_down -> no_error; + shutdown -> no_error; _ -> internal_error end, case Transport:send(Socket, cow_http2:goaway( |