summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMatthias Radestock <matthias@lshift.net>2010-04-27 11:13:35 +0100
committerMatthias Radestock <matthias@lshift.net>2010-04-27 11:13:35 +0100
commit16ab3b0f892cffc95af60066794d6a7c3e9fc484 (patch)
treee30b11f52365b6356acf9e2f0bae0cf2f183376b /src
parent6550aafab253053c226376752a011d49bf914cee (diff)
downloadrabbitmq-server-git-16ab3b0f892cffc95af60066794d6a7c3e9fc484.tar.gz
minor refactoring
Diffstat (limited to 'src')
-rw-r--r--src/rabbit_invariable_queue.erl16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/rabbit_invariable_queue.erl b/src/rabbit_invariable_queue.erl
index 30c5744dac..fa11b9761d 100644
--- a/src/rabbit_invariable_queue.erl
+++ b/src/rabbit_invariable_queue.erl
@@ -154,8 +154,8 @@ tx_commit(Txn, Fun, State = #iv_state { qname = QName, pending_ack = PA,
Fun(),
AckTags1 = lists:flatten(AckTags),
PA1 = remove_acks(AckTags1, PA),
- {Q1, Len1} = lists:foldr(fun (Msg, {QN, LenN}) ->
- {queue:in({Msg, false}, QN), LenN + 1}
+ {Q1, Len1} = lists:foldl(fun (Msg, {QN, LenN}) ->
+ {queue:in_r({Msg, false}, QN), LenN + 1}
end, {Q, Len}, PubsRev),
{AckTags1, State #iv_state { pending_ack = PA1, queue = Q1, len = Len1 }}.
@@ -170,12 +170,12 @@ requeue(AckTags, State = #iv_state { pending_ack = PA, queue = Q,
%% messages should appear, thus the persister is permitted to sort
%% based on seq_id, even though it'll likely give a different
%% order to the last known state of our queue, prior to shutdown.
- {Q1, PA1, Len1} =
- lists:foldl(
- fun (Guid, {QN, PAN, LenN}) ->
- {ok, Msg = #basic_message {}} = dict:find(Guid, PAN),
- {queue:in({Msg, true}, QN), dict:erase(Guid, PAN), LenN + 1}
- end, {Q, PA, Len}, AckTags),
+ {Q1, Len1} = lists:foldl(
+ fun (Guid, {QN, LenN}) ->
+ {ok, Msg = #basic_message {}} = dict:find(Guid, PA),
+ {queue:in({Msg, true}, QN), LenN + 1}
+ end, {Q, Len}, AckTags),
+ PA1 = remove_acks(AckTags, PA),
State #iv_state { pending_ack = PA1, queue = Q1, len = Len1 }.
len(#iv_state { len = Len }) ->