diff options
author | Matthew Sackman <matthew@rabbitmq.com> | 2011-02-07 16:35:05 +0000 |
---|---|---|
committer | Matthew Sackman <matthew@rabbitmq.com> | 2011-02-07 16:35:05 +0000 |
commit | ca76cdd8e81559c0d48b672c8bf097e54a33477c (patch) | |
tree | af8ac9c170c3f284cf3c01dd6da6e896c08d8ae5 /src | |
parent | 4cd34e45f12e31ef0090b0033c55be419cf47d69 (diff) | |
download | rabbitmq-server-ca76cdd8e81559c0d48b672c8bf097e54a33477c.tar.gz |
use a plain cast, not delegatebug23811
Diffstat (limited to 'src')
-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 a6da551d..e32a21da 100644 --- a/src/rabbit_amqqueue.erl +++ b/src/rabbit_amqqueue.erl @@ -421,7 +421,7 @@ basic_cancel(#amqqueue{pid = QPid}, ChPid, ConsumerTag, OkMsg) -> infinity). notify_sent(QPid, ChPid) -> - delegate_cast(QPid, {notify_sent, ChPid}). + gen_server2:cast(QPid, {notify_sent, ChPid}). unblock(QPid, ChPid) -> delegate_cast(QPid, {unblock, ChPid}). |