diff options
-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, |