diff options
author | Simon MacMullen <simon@rabbitmq.com> | 2012-11-29 13:09:15 +0000 |
---|---|---|
committer | Simon MacMullen <simon@rabbitmq.com> | 2012-11-29 13:09:15 +0000 |
commit | b81fd50dda7dd65f97903a85615d684804bed501 (patch) | |
tree | 49b03a6267ef4b85834583553daea5f3e1160d58 /src/rabbit_mirror_queue_sync.erl | |
parent | d5279be186f94199f92a80fc52b6f11d976caed4 (diff) | |
download | rabbitmq-server-b81fd50dda7dd65f97903a85615d684804bed501.tar.gz |
Don't do anything if we decided not to do anything.
Diffstat (limited to 'src/rabbit_mirror_queue_sync.erl')
-rw-r--r-- | src/rabbit_mirror_queue_sync.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rabbit_mirror_queue_sync.erl b/src/rabbit_mirror_queue_sync.erl index b717f1f7..266465ec 100644 --- a/src/rabbit_mirror_queue_sync.erl +++ b/src/rabbit_mirror_queue_sync.erl @@ -166,7 +166,7 @@ sync_send_complete(SPid, _MRef, Ref) -> slave(0, Ref, TRef, Syncer, _BQ, BQS, _UpdateRamDuration) -> Syncer ! {sync_deny, Ref, self()}, - {ok, {TRef, BQS}}; + denied; slave(_DD, Ref, TRef, Syncer, BQ, BQS, UpdateRamDuration) -> MRef = erlang:monitor(process, Syncer), |