summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon MacMullen <simon@rabbitmq.com>2014-01-17 12:12:07 +0000
committerSimon MacMullen <simon@rabbitmq.com>2014-01-17 12:12:07 +0000
commit8bcbc0958fb3e0d687977adaa487cde1818bd101 (patch)
tree0d0a0c3577fe1b6e89b40534ce3df6a5e92d0d6e
parent2caef44aa2b4c5fbeda42555dbf63561c3b22632 (diff)
downloadrabbitmq-server-bug25965.tar.gz
Oops x 2bug25965
-rw-r--r--src/rabbit_channel.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rabbit_channel.erl b/src/rabbit_channel.erl
index 98c0c1f1..bc9ceac0 100644
--- a/src/rabbit_channel.erl
+++ b/src/rabbit_channel.erl
@@ -521,7 +521,7 @@ check_internal_exchange(_) ->
check_msg_size(Content) ->
Size = rabbit_basic:msg_size(Content),
case Size > ?MAX_MSG_SIZE of
- true -> precondition_failed("message size ~s larger than max size ~s",
+ true -> precondition_failed("message size ~B larger than max size ~B",
[Size, ?MAX_MSG_SIZE]);
false -> ok
end.