summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon MacMullen <simon@rabbitmq.com>2012-12-05 13:50:04 +0000
committerSimon MacMullen <simon@rabbitmq.com>2012-12-05 13:50:04 +0000
commitbd4dad1150be114357b8c5730c9942b43b425c5b (patch)
tree8c4d04969b21ea965b1a080c343d4bf16eba46a6
parent66f11afe7300881f00496fc5431c7d362aadf8f0 (diff)
downloadrabbitmq-server-bd4dad1150be114357b8c5730c9942b43b425c5b.tar.gz
Normalise credit flow quantities.
-rw-r--r--src/rabbit_mirror_queue_sync.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rabbit_mirror_queue_sync.erl b/src/rabbit_mirror_queue_sync.erl
index 4cb534ff..a80f8f50 100644
--- a/src/rabbit_mirror_queue_sync.erl
+++ b/src/rabbit_mirror_queue_sync.erl
@@ -123,7 +123,7 @@ syncer_loop({Ref, MPid} = Args, SPidsMRefs) ->
{msg, Ref, Msg, MsgProps} ->
SPidsMRefs1 = wait_for_credit(SPidsMRefs, Ref),
[begin
- credit_flow:send(SPid, ?CREDIT_DISC_BOUND),
+ credit_flow:send(SPid),
SPid ! {sync_msg, Ref, Msg, MsgProps}
end || {SPid, _} <- SPidsMRefs1],
syncer_loop(Args, SPidsMRefs1);
@@ -205,7 +205,7 @@ slave_sync_loop(Args = {Ref, MRef, Syncer, BQ, UpdateRamDuration, Parent},
{TRef1, BQS1} = UpdateRamDuration(BQ, BQS),
slave_sync_loop(Args, TRef1, BQS1);
{sync_msg, Ref, Msg, Props} ->
- credit_flow:ack(Syncer, ?CREDIT_DISC_BOUND),
+ credit_flow:ack(Syncer),
Props1 = Props#message_properties{needs_confirming = false},
BQS1 = BQ:publish(Msg, Props1, true, none, BQS),
slave_sync_loop(Args, TRef, BQS1);