summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Radestock <matthias@rabbitmq.com>2010-07-01 10:43:59 +0100
committerMatthias Radestock <matthias@rabbitmq.com>2010-07-01 10:43:59 +0100
commitab01e05df695781eafb16239f744b86b7347c3c0 (patch)
tree850f369bfd3848efba7410ae2e550f86f2546522
parentccee79c48fd15c0857d1247b2bb4cb8d0e181555 (diff)
downloadrabbitmq-server-ab01e05df695781eafb16239f744b86b7347c3c0.tar.gz
recurse with the correct value
not that it matters
-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 e16cb2de..1d91494b 100644
--- a/src/rabbit_channel.erl
+++ b/src/rabbit_channel.erl
@@ -753,7 +753,7 @@ handle_method(#'queue.declare'{queue = QueueNameBin,
{existing, _Q} ->
%% must have been created between the stat and the
%% declare. Loop around again.
- handle_method(Declare, undefined, State)
+ handle_method(Declare, none, State)
end
end;