diff options
| author | Matthew Sackman <matthew@rabbitmq.com> | 2011-02-11 15:23:37 +0000 |
|---|---|---|
| committer | Matthew Sackman <matthew@rabbitmq.com> | 2011-02-11 15:23:37 +0000 |
| commit | 99f60e689edfcfb63f30d1b426f82a70ddd0160e (patch) | |
| tree | 367c100a464ff82c30b4b1bf0a15215e68852a4f /src | |
| parent | 5a6064f8baaab464e3877d22a0f2cc66cb9371cd (diff) | |
| download | rabbitmq-server-git-99f60e689edfcfb63f30d1b426f82a70ddd0160e.tar.gz | |
correct comment
Diffstat (limited to 'src')
| -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 7d47eecdf8..df56ee49ad 100644 --- a/src/rabbit_channel.erl +++ b/src/rabbit_channel.erl @@ -558,7 +558,7 @@ handle_method(_Method, _, State = #ch{state = closing}) -> handle_method(#'channel.close'{}, _, State = #ch{reader_pid = ReaderPid}) -> ReaderPid ! {channel_closing, self()}, %% no error, so rollback_and_notify should be 'ok'. Do in parallel - %% with the reader picking up our message and running our Fun. + %% with the reader picking up our message and casting back to us. {ok, State1} = rollback_and_notify(State), {noreply, State1}; |
