diff options
| author | Matthias Radestock <matthias@lshift.net> | 2008-12-18 20:33:31 +0000 |
|---|---|---|
| committer | Matthias Radestock <matthias@lshift.net> | 2008-12-18 20:33:31 +0000 |
| commit | 57fe74cbbb790bd75e64846fbea63b99efdeb7ca (patch) | |
| tree | 658a7602190772becfee063e80a3c87a061d0018 | |
| parent | f85c67869fbfef85dd4a59e47f47eca83d1e70e0 (diff) | |
| download | rabbitmq-server-git-57fe74cbbb790bd75e64846fbea63b99efdeb7ca.tar.gz | |
fix typo
| -rw-r--r-- | src/rabbit_limiter.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rabbit_limiter.erl b/src/rabbit_limiter.erl index 9f23724e52..b939b4bb84 100644 --- a/src/rabbit_limiter.erl +++ b/src/rabbit_limiter.erl @@ -84,8 +84,8 @@ decrement_capacity(LimiterPid, Magnitude) -> init([ChPid]) -> {ok, #lim{ch_pid = ChPid} }. -% This queuries the limiter to ask if it is possible to send a message without -% breaching a limit for this queue process +% This queries the limiter to ask if it is possible to send a message +% without breaching a limit for this queue process handle_call({can_send, QPid}, _From, State = #lim{in_use = InUse}) -> NewState = monitor_queue(QPid, State), case limit_reached(NewState) of |
