Skip to content

Commit 57d5d09

Browse files
committed
fixes argument order
1 parent c825578 commit 57d5d09

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/rabbit_variable_queue.erl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2034,10 +2034,10 @@ push_alphas_to_betas1(Generator, Consumer, Quota, Q,
20342034
msg_in_ram(MsgStatus2)),
20352035
DeltaRamReady = DeltaRam,
20362036
State2 = Consumer(MsgStatus2, Qa, State1),
2037-
push_alphas_to_betas1(Generator, Consumer, Quota - 1,
2037+
push_alphas_to_betas1(Generator, Consumer, Quota - 1, Qa,
20382038
CurrRamReadyCount + DeltaRamReady,
20392039
CurrRamBytes + DeltaRam * msg_size(MsgStatus),
2040-
Qa, State2)
2040+
State2)
20412041
end
20422042
end.
20432043

0 commit comments

Comments
 (0)