diff options
author | Rob Harrop <rharrop@vmware.com> | 2010-09-15 10:47:57 +0100 |
---|---|---|
committer | Rob Harrop <rharrop@vmware.com> | 2010-09-15 10:47:57 +0100 |
commit | c13b29f5527fc8c48336a7ea82f30022d42559d5 (patch) | |
tree | 2243844d8e3f617cd96f5b5b0f237dc0297f7dff /src/rabbit_queue_index.erl | |
parent | 5f2ea2f1f2e4efcb7caf8b1194d365ea4bfc4a38 (diff) | |
download | rabbitmq-server-c13b29f5527fc8c48336a7ea82f30022d42559d5.tar.gz |
erlang tests working again
Diffstat (limited to 'src/rabbit_queue_index.erl')
-rw-r--r-- | src/rabbit_queue_index.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rabbit_queue_index.erl b/src/rabbit_queue_index.erl index 4f2168d1..c631f7a2 100644 --- a/src/rabbit_queue_index.erl +++ b/src/rabbit_queue_index.erl @@ -788,7 +788,7 @@ read_bounded_segment(Seg, {StartSeg, StartRelSeq}, {EndSeg, EndRelSeq}, fun (RelSeq, {{Guid, MsgProperties, IsPersistent}, IsDelivered, no_ack}, Acc) when (Seg > StartSeg orelse StartRelSeq =< RelSeq) andalso (Seg < EndSeg orelse EndRelSeq >= RelSeq) -> - [ {Guid, MsgProperties, reconstruct_seq_id(StartSeg, RelSeq), + [ {Guid, reconstruct_seq_id(StartSeg, RelSeq), MsgProperties, IsPersistent, IsDelivered == del} | Acc ]; (_RelSeq, _Value, Acc) -> Acc |