diff options
| author | Matthias Radestock <matthias@rabbitmq.com> | 2012-11-19 18:16:49 +0000 |
|---|---|---|
| committer | Matthias Radestock <matthias@rabbitmq.com> | 2012-11-19 18:16:49 +0000 |
| commit | de0d9b6a23d1ac6bcdea17d5d201cf4d3e588faa (patch) | |
| tree | b12e639b6bcea08a8d27c20126648d7eb905832e /src | |
| parent | b8533a53ac6fe2288ba453bca8a7537f104753b8 (diff) | |
| download | rabbitmq-server-git-de0d9b6a23d1ac6bcdea17d5d201cf4d3e588faa.tar.gz | |
format mq slave message queue
to facilitate debugging
Diffstat (limited to 'src')
| -rw-r--r-- | src/rabbit_mirror_queue_slave.erl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/rabbit_mirror_queue_slave.erl b/src/rabbit_mirror_queue_slave.erl index 1ba1420f42..bea4758c4d 100644 --- a/src/rabbit_mirror_queue_slave.erl +++ b/src/rabbit_mirror_queue_slave.erl @@ -28,7 +28,7 @@ -export([init/1, handle_call/3, handle_cast/2, handle_info/2, terminate/2, code_change/3, handle_pre_hibernate/1, prioritise_call/3, - prioritise_cast/2, prioritise_info/2]). + prioritise_cast/2, prioritise_info/2, format_message_queue/2]). -export([joined/2, members_changed/3, handle_msg/3]). @@ -329,6 +329,8 @@ prioritise_info(Msg, _State) -> _ -> 0 end. +format_message_queue(Opt, MQ) -> rabbit_misc:format_message_queue(Opt, MQ). + %% --------------------------------------------------------------------------- %% GM %% --------------------------------------------------------------------------- |
