diff options
| author | Matthew Sackman <matthew@lshift.net> | 2009-07-09 17:26:50 +0100 |
|---|---|---|
| committer | Matthew Sackman <matthew@lshift.net> | 2009-07-09 17:26:50 +0100 |
| commit | 8e28836f1e870eaaef82827e6c78543f9a44e2b3 (patch) | |
| tree | 2cd390d027f3d2079e5cdf3fc0b1bd33c8fa8b67 | |
| parent | 547824a8c5eed6a2d1d7104767cc68c01fe04a32 (diff) | |
| download | rabbitmq-server-git-8e28836f1e870eaaef82827e6c78543f9a44e2b3.tar.gz | |
*cough*
| -rw-r--r-- | src/rabbit_disk_queue.erl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/rabbit_disk_queue.erl b/src/rabbit_disk_queue.erl index eaeef9e32a..813ab7c433 100644 --- a/src/rabbit_disk_queue.erl +++ b/src/rabbit_disk_queue.erl @@ -519,7 +519,8 @@ handle_info(timeout, State = #dqstate { commit_timer_ref = undefined }) -> %% don't use noreply/1 or noreply1/1 as they'll restart the memory timer {noreply, stop_memory_timer(State), hibernate, 0}; handle_info(timeout, State) -> - noreply(sync_current_file_handle(State)). + noreply(sync_current_file_handle(State)); +handle_info(_Info, State) -> noreply(State). terminate(_Reason, State) -> |
