summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Radestock <matthias@rabbitmq.com>2013-09-09 06:04:52 +0100
committerMatthias Radestock <matthias@rabbitmq.com>2013-09-09 06:04:52 +0100
commit3b2160e1735d112c22eee279f43153b117478848 (patch)
treeb558fb4f34a2301118cf08d5965128a62f08fc09
parent33d7248feb0be93fea931958d3a9edd65d0f6077 (diff)
downloadrabbitmq-server-git-3b2160e1735d112c22eee279f43153b117478848.tar.gz
correctly prettify exclusive owner dissappearance warning
WRONG: Queue "queue 'amq.gen-FQZtyp6mpRdmm3-on_LAOQ' in vhost 'urhyfncz'" exclusive owner went away RIGHT: exclusive owner for queue 'amq.gen-FQZtyp6mpRdmm3-on_LAOQ' in vhost 'urhyfncz' went away This got broken in http://hg.rabbitmq.com/rabbitmq-server/rev/f9f4919656ab
-rw-r--r--src/rabbit_amqqueue_process.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rabbit_amqqueue_process.erl b/src/rabbit_amqqueue_process.erl
index e61cba020f..05a149270e 100644
--- a/src/rabbit_amqqueue_process.erl
+++ b/src/rabbit_amqqueue_process.erl
@@ -1073,7 +1073,7 @@ handle_call({init, Recover}, From,
gen_server2:reply(From, not_found),
case Recover of
new -> rabbit_log:warning(
- "Queue ~p exclusive owner went away~n",
+ "exclusive owner for ~s went away~n",
[rabbit_misc:rs(QName)]);
_ -> ok
end,