summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Radestock <matthias@rabbitmq.com>2014-03-13 19:32:13 +0000
committerMatthias Radestock <matthias@rabbitmq.com>2014-03-13 19:32:13 +0000
commit6a65d9b62a55a896db63706aa015c5523a7182bb (patch)
tree9951cfcfbc328bfb90f3a8620707f5eff43f81a6
parentf7a717c1df0e5d811305e6b054811f8d514a5272 (diff)
downloadrabbitmq-server-bug26066.tar.gz
correctness++bug26066
-rw-r--r--src/rabbit_msg_store.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rabbit_msg_store.erl b/src/rabbit_msg_store.erl
index 2322f0f9..1562050c 100644
--- a/src/rabbit_msg_store.erl
+++ b/src/rabbit_msg_store.erl
@@ -887,7 +887,7 @@ handle_info(sync, State) ->
handle_info(timeout, State) ->
noreply(internal_sync(State));
-handle_info({'DOWN', _MRef, Pid, _Reason}, State) ->
+handle_info({'DOWN', _MRef, process, Pid, _Reason}, State) ->
credit_flow:peer_down(Pid),
noreply(State);