Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions deps/rabbit/src/rabbit_channel.erl
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@
%% When a queue is declared as exclusive on a channel, the channel
%% will notify queue collector of that queue.

-include_lib("kernel/include/logger.hrl").

-include_lib("rabbit_common/include/rabbit_framing.hrl").
-include_lib("rabbit_common/include/rabbit.hrl").
-include_lib("rabbit_common/include/rabbit_misc.hrl").
Expand Down Expand Up @@ -729,6 +731,10 @@ handle_info({{'DOWN', QName}, _MRef, process, QPid, Reason},
handle_eol(QRef, State)
end;

handle_info({'DOWN', _MRef, process, Pid, normal}, State) ->
?LOG_DEBUG("Process ~0p monitored by channel ~0p exited", [Pid, self()]),
{noreply, State};

handle_info({'EXIT', _Pid, Reason}, State) ->
{stop, Reason, State};

Expand Down
Loading