diff options
| -rw-r--r-- | src/rabbit_channel.erl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/rabbit_channel.erl b/src/rabbit_channel.erl index ec1d1fbaa4..fa39ecf7ed 100644 --- a/src/rabbit_channel.erl +++ b/src/rabbit_channel.erl @@ -444,6 +444,12 @@ handle_method(#'basic.cancel'{consumer_tag = ConsumerTag, end end; +handle_method(#'basic.qos'{global = true}, _, State) -> + rabbit_misc:protocol_error(not_implemented, + "Basic.Qos global (per-connection) setting not implemented", + [], + 'basic.qos'); + handle_method(#'basic.qos'{}, _, State) -> %% FIXME: Need to implement QOS {reply, #'basic.qos_ok'{}, State}; |
