diff options
| author | Matthias Radestock <matthias@rabbitmq.com> | 2014-01-15 12:47:16 +0000 |
|---|---|---|
| committer | Matthias Radestock <matthias@rabbitmq.com> | 2014-01-15 12:47:16 +0000 |
| commit | fd31ec9cb5222e32892fd9bfa0612fcf3bd5691b (patch) | |
| tree | 52c898407812f473ffe4910880339ff9b0f97f64 | |
| parent | 23689dd0cdc49575ba0ec52b5e4f2f28182f7fa6 (diff) | |
| download | rabbitmq-server-bug25962.tar.gz | |
eliminate unused var warningbug25962
| -rw-r--r-- | src/rabbit_channel.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rabbit_channel.erl b/src/rabbit_channel.erl index d03eff23..b0010f90 100644 --- a/src/rabbit_channel.erl +++ b/src/rabbit_channel.erl @@ -1143,7 +1143,7 @@ handle_method(#'confirm.select'{nowait = NoWait}, _, State) -> handle_method(#'channel.flow'{active = true}, _, State) -> {reply, #'channel.flow_ok'{active = true}, State}; -handle_method(#'channel.flow'{active = false}, _, State) -> +handle_method(#'channel.flow'{active = false}, _, _State) -> rabbit_misc:protocol_error(not_implemented, "active=false", []); handle_method(#'basic.credit'{consumer_tag = CTag, |
