Merge pull request #9040 from rabbitmq/fix-mqtt-reader-crash

Fix crash in MQTT reader
This commit is contained in:
Michael Klishin 2023-08-09 19:19:28 +04:00 committed by GitHub
commit 79e3c10b59
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -249,7 +249,7 @@ handle_info({{'DOWN', _QName}, _MRef, process, _Pid, _Reason} = Evt,
{ok, PState} ->
maybe_process_deferred_recv(control_throttle(pstate(State, PState)));
{error, Reason} ->
{stop, {shutdown, Reason, State}}
{stop, {shutdown, Reason}, State}
end;
handle_info({'DOWN', _MRef, process, QPid, _Reason}, State) ->