summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Klishin <michael@clojurewerkz.org>2016-02-05 19:31:18 +0300
committerMichael Klishin <michael@clojurewerkz.org>2016-02-05 19:31:18 +0300
commit9d6e514a9ead6d784a939fe52e798dcd21d5c519 (patch)
treeb222753d382eabd13a10f19988e21efa2bbde20b /src
parent7a062e5f5cb1c8caf59d06680c1a015a30fdbe6c (diff)
downloadrabbitmq-server-git-9d6e514a9ead6d784a939fe52e798dcd21d5c519.tar.gz
Copy
Diffstat (limited to 'src')
-rw-r--r--src/rabbit_amqqueue_process.erl7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/rabbit_amqqueue_process.erl b/src/rabbit_amqqueue_process.erl
index e3f2a9fc1b..2f82b72d03 100644
--- a/src/rabbit_amqqueue_process.erl
+++ b/src/rabbit_amqqueue_process.erl
@@ -705,8 +705,7 @@ handle_ch_down(DownPid, State = #q{consumers = Consumers,
true ->
log_auto_delete(
io_lib:format(
- "because it's last consumer channel was closed"++
- " with ~p consumers",
+ "because all ~p of its consumers were on a channel that was closed",
[length(ChCTags)]),
State),
{stop, State2};
@@ -1370,8 +1369,8 @@ format_message_queue(Opt, MQ) -> rabbit_misc:format_message_queue(Opt, MQ).
log_delete_exclusive(ConPid, #q{ q = #amqqueue{ name = Resource } }) ->
#resource{ name = QName, virtual_host = VHost } = Resource,
- rabbit_queue:error("Deleting exclusive queue '~s' for vhost '~s' " ++
- " because it's declaring connection ~p was closed",
+ rabbit_queue:error("Deleting exclusive queue '~s' in vhost '~s' " ++
+ " because its declaring connection ~p was closed",
[QName, VHost, ConPid]).
log_auto_delete(Reason, #q{ q = #amqqueue{ name = Resource } }) ->