-
Beta Was this translation helpful? Give feedback.
Answered by
narrowtux
Nov 10, 2022
Replies: 1 comment 1 reply
-
I've connected to the shell using erl> R2 = rabbit_misc:r(<<"/">>, queue, <<"ws_api_34b32502-148c-4f2b-a4fe-31c74ee23994">>).
erl> {ok, Q} = rabbit_amqqueue:lookup(R2).
erl> Pid = amqqueue:get_pid(Q).
<0.7318.493>
erl> erlang:is_process_alive(Pid).
false seems like it died at some point. I was able to delete them all with |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
lukebakken
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I've connected to the shell using
rabbitmq-diagnostics remote_shell
and tried to find out what's happening with the queue process:seems like it died at some point.
I was able to delete them all with
amqqueue:delete_crashed
.