Skip to content

Commit

Permalink
handle shutdown delete error
Browse files Browse the repository at this point in the history
  • Loading branch information
kjnilsson committed Dec 2, 2024
1 parent b6c2e19 commit c820291
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deps/rabbit/src/rabbit_fifo_client.erl
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ enqueue(QName, Correlation, Msg,
%% it is safe to reject the message as we never attempted
%% to send it
{reject_publish, State0};
{error, {{shutdown, delete}, _Stack}} ->
{error, {shutdown, delete}} ->
rabbit_log:debug("~ts: QQ ~ts tried to register enqueuer during delete shutdown",
[?MODULE, rabbit_misc:rs(QName)]),
{reject_publish, State0};
Expand Down

0 comments on commit c820291

Please sign in to comment.