diff options
| author | Matthias Radestock <matthias@lshift.net> | 2008-10-16 05:46:04 +0100 |
|---|---|---|
| committer | Matthias Radestock <matthias@lshift.net> | 2008-10-16 05:46:04 +0100 |
| commit | 9d11200ccbdfb0743c475b54aa7f4d4698263877 (patch) | |
| tree | 7655dfd2250e26794234090f8ae9ccd83a9a92df | |
| parent | 9eb25deee4ab897f6be8af3b0e338a59d67283e7 (diff) | |
| download | rabbitmq-server-git-9d11200ccbdfb0743c475b54aa7f4d4698263877.tar.gz | |
some explanation
| -rw-r--r-- | src/rabbit_channel.erl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/rabbit_channel.erl b/src/rabbit_channel.erl index edfd178704..e3542b00be 100644 --- a/src/rabbit_channel.erl +++ b/src/rabbit_channel.erl @@ -644,6 +644,9 @@ handle_method(#'channel.flow'{active = _}, _, State) -> {reply, #'channel.flow_ok'{active = true}, State}; handle_method(#'channel.flow_ok'{active = _}, _, State) -> + %% TODO: We may want to correlate this to channel.flow messages we + %% have sent, and complain if we get an unsolicited + %% channel.flow_ok, or the client refuses our flow request. {noreply, State}; handle_method(_MethodRecord, _Content, _State) -> |
