diff options
| author | Matthias Radestock <matthias@rabbitmq.com> | 2012-06-23 08:48:54 +0100 |
|---|---|---|
| committer | Matthias Radestock <matthias@rabbitmq.com> | 2012-06-23 08:48:54 +0100 |
| commit | 648efa8eb736011c9324f024bd9981ba04348114 (patch) | |
| tree | 12a23c6ddee40ac83acce5de46e6a4316ec4c7c6 | |
| parent | 750ff0aa801484724bbd8c8742421483ba402107 (diff) | |
| download | rabbitmq-server-git-648efa8eb736011c9324f024bd9981ba04348114.tar.gz | |
consistency: leave the 'ok' matching to the caller
...like we do everywhere else in this API
| -rw-r--r-- | src/rabbit_amqqueue.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rabbit_amqqueue.erl b/src/rabbit_amqqueue.erl index eca1017cfc..e3ed411341 100644 --- a/src/rabbit_amqqueue.erl +++ b/src/rabbit_amqqueue.erl @@ -511,7 +511,7 @@ basic_consume(#amqqueue{pid = QPid}, NoAck, ChPid, Limiter, Limiter, ConsumerTag, ExclusiveConsume, OkMsg}). basic_cancel(#amqqueue{pid = QPid}, ChPid, ConsumerTag, OkMsg) -> - ok = delegate_call(QPid, {basic_cancel, ChPid, ConsumerTag, OkMsg}). + delegate_call(QPid, {basic_cancel, ChPid, ConsumerTag, OkMsg}). notify_sent(QPid, ChPid) -> Key = {consumer_credit_to, QPid}, |
