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 5, 2024
1 parent b6c2e19 commit e5c0afd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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
2 changes: 1 addition & 1 deletion rabbitmq-components.mk
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ dep_khepri = hex 0.16.0
dep_khepri_mnesia_migration = hex 0.7.1
dep_osiris = git https://github.com/rabbitmq/osiris v1.8.5
dep_prometheus = hex 4.11.0
dep_ra = hex 2.16.0-pre.4
dep_ra = hex 2.16.0-pre.6
dep_ranch = hex 2.1.0
dep_recon = hex 2.5.6
dep_redbug = hex 2.0.7
Expand Down

0 comments on commit e5c0afd

Please sign in to comment.