summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Klishin <michael@clojurewerkz.org>2018-11-17 05:31:13 +0300
committerMichael Klishin <michael@clojurewerkz.org>2018-11-17 05:31:13 +0300
commit4faedab6b56072c75a363df02c930bad3b2c8263 (patch)
tree2c465d277975cd90552f31bd27ff87a8d0ae5a7b /src
parenteb92ce86eed87d783c9e6f1a2e2a9a2a454e890e (diff)
downloadrabbitmq-server-git-4faedab6b56072c75a363df02c930bad3b2c8263.tar.gz
Wording
Diffstat (limited to 'src')
-rw-r--r--src/rabbit_quorum_queue.erl6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/rabbit_quorum_queue.erl b/src/rabbit_quorum_queue.erl
index a438c4826e..311894dee6 100644
--- a/src/rabbit_quorum_queue.erl
+++ b/src/rabbit_quorum_queue.erl
@@ -241,7 +241,7 @@ recover(Queues) ->
case ra:start_server(Name, {Name, node()}, Machine, RaNodes) of
ok -> ok;
Err ->
- rabbit_log:warning("recover: Quorum queue ~w could not"
+ rabbit_log:warning("recover: quorum queue ~w could not"
" be started ~w", [Name, Err]),
ok
end;
@@ -252,7 +252,7 @@ recover(Queues) ->
ok;
Err ->
%% catch all clause to avoid causing the vhost not to start
- rabbit_log:warning("recover: Quorum queue ~w could not be "
+ rabbit_log:warning("recover: quorum queue ~w could not be "
"restarted ~w", [Name, Err]),
ok
end,
@@ -294,7 +294,7 @@ delete(#amqqueue{ type = quorum, pid = {Name, _}, name = QName, quorum_nodes = Q
false ->
rabbit_misc:protocol_error(
internal_error,
- "Cannot delete queue '~s', servers unavailable: ~255p",
+ "Cannot delete quorum queue '~s', not enough nodes online to reach a quorum: ~255p",
[rabbit_misc:rs(QName), Errs])
end
end.