diff options
| author | Simon MacMullen <simon@rabbitmq.com> | 2013-07-24 14:07:13 +0100 |
|---|---|---|
| committer | Simon MacMullen <simon@rabbitmq.com> | 2013-07-24 14:07:13 +0100 |
| commit | 43ff8b4e88e50fad95f043bd367c53a1166c3942 (patch) | |
| tree | 2c533d60af848de3d48ba1e126ff9f529ff04e44 | |
| parent | 719b08e6b54f24ad28509f6c189c6274da91bc32 (diff) | |
| download | rabbitmq-server-git-43ff8b4e88e50fad95f043bd367c53a1166c3942.tar.gz | |
Slightly clearer names?
| -rw-r--r-- | src/rabbit_amqqueue_process.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rabbit_amqqueue_process.erl b/src/rabbit_amqqueue_process.erl index 136168f6db..1244d640e4 100644 --- a/src/rabbit_amqqueue_process.erl +++ b/src/rabbit_amqqueue_process.erl @@ -554,7 +554,7 @@ run_message_queue(State) -> {_IsEmpty1, State1} = deliver_msgs_to_consumers( fun deliver_from_queue_deliver/2, is_empty(State), State), - notify_decorators(queue_finished, [], State1), + notify_decorators(queue_run_finished, [], State1), State1. consumer_priority({_ChPid, #consumer{args = Args}}) -> @@ -1410,7 +1410,7 @@ handle_cast({credit, ChPid, CTag, Credit, Drain}, end); handle_cast(notify_decorators, State) -> - notify_decorators(on_demand, [], State), + notify_decorators(notification_requested, [], State), noreply(State); handle_cast(wake_up, State) -> |
