diff options
| author | Matthew Sackman <matthew@lshift.net> | 2010-04-05 21:29:29 +0100 |
|---|---|---|
| committer | Matthew Sackman <matthew@lshift.net> | 2010-04-05 21:29:29 +0100 |
| commit | e81e10507bb4fbfcf2fdedb971ffe52d99cc6712 (patch) | |
| tree | 7b76f00612e55854277638fd1430487b3cab2930 | |
| parent | 0227797f19d04a7cce315bfeb6c5f94cb2ed9592 (diff) | |
| download | rabbitmq-server-git-e81e10507bb4fbfcf2fdedb971ffe52d99cc6712.tar.gz | |
Forgot to remove a printf
| -rw-r--r-- | src/rabbit_msg_store.erl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/rabbit_msg_store.erl b/src/rabbit_msg_store.erl index 1455b4567b..8ea2344c75 100644 --- a/src/rabbit_msg_store.erl +++ b/src/rabbit_msg_store.erl @@ -716,8 +716,7 @@ handle_cast({set_maximum_since_use, Age}, State) -> handle_info(timeout, State) -> noreply(internal_sync(State)); -handle_info({'EXIT', Pid, Reason}, State) -> - io:format("~p EXIT! ~p ~p ~p~n", [self(), Reason, Pid, State]), +handle_info({'EXIT', _Pid, Reason}, State) -> {stop, Reason, State}. terminate(_Reason, State = #msstate { index_state = IndexState, |
