diff options
| author | Simon MacMullen <simon@rabbitmq.com> | 2012-05-25 13:48:24 +0100 |
|---|---|---|
| committer | Simon MacMullen <simon@rabbitmq.com> | 2012-05-25 13:48:24 +0100 |
| commit | c6d23545cc3f0ef3288eda845bc47b7a9e851807 (patch) | |
| tree | de3dd99ed57df6b366361a913bf1bc5eb41fce19 | |
| parent | 7bd43a28ab291c22bc1769721541483ffb90ac51 (diff) | |
| download | rabbitmq-server-git-c6d23545cc3f0ef3288eda845bc47b7a9e851807.tar.gz | |
Don't prioritise anything protocol-ish over anything else.
| -rw-r--r-- | src/rabbit_amqqueue_process.erl | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/rabbit_amqqueue_process.erl b/src/rabbit_amqqueue_process.erl index 5701efeb99..f2833c2623 100644 --- a/src/rabbit_amqqueue_process.erl +++ b/src/rabbit_amqqueue_process.erl @@ -984,8 +984,6 @@ prioritise_call(Msg, _From, _State) -> info -> 9; {info, _Items} -> 9; consumers -> 9; - {basic_consume, _, _, _, _, _, _} -> 7; - {basic_cancel, _, _, _} -> 7; stat -> 7; _ -> 0 end. @@ -995,10 +993,6 @@ prioritise_cast(Msg, _State) -> delete_immediately -> 8; {set_ram_duration_target, _Duration} -> 8; {set_maximum_since_use, _Age} -> 8; - {ack, _AckTags, _ChPid} -> 7; - {reject, _AckTags, _Requeue, _ChPid} -> 7; - {notify_sent, _ChPid, _Credit} -> 7; - {unblock, _ChPid} -> 7; {run_backing_queue, _Mod, _Fun} -> 6; _ -> 0 end. |
