diff options
| author | Matthias Radestock <matthias@rabbitmq.com> | 2011-07-14 13:29:29 +0100 |
|---|---|---|
| committer | Matthias Radestock <matthias@rabbitmq.com> | 2011-07-14 13:29:29 +0100 |
| commit | 1415c54ab973255fd547cbccfb805cb75ddab6a7 (patch) | |
| tree | a66aed54d00b829064d270955b8e9c423e880ac6 /src | |
| parent | e510d63ec69c72168d1788f330b9d7dbb1590517 (diff) | |
| download | rabbitmq-server-git-1415c54ab973255fd547cbccfb805cb75ddab6a7.tar.gz | |
fix bug introduced by bug 24216 (tx untangling)
forgot to propagate an API change
Diffstat (limited to 'src')
| -rw-r--r-- | src/rabbit_mirror_queue_master.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rabbit_mirror_queue_master.erl b/src/rabbit_mirror_queue_master.erl index 41748c1539..69be6ecdf2 100644 --- a/src/rabbit_mirror_queue_master.erl +++ b/src/rabbit_mirror_queue_master.erl @@ -298,7 +298,7 @@ is_duplicate(Message = #basic_message { id = MsgId }, error -> %% We permit the underlying BQ to have a peek at it, but %% only if we ourselves are not filtering out the msg. - {Result, BQS1} = BQ:is_duplicate(none, Message, BQS), + {Result, BQS1} = BQ:is_duplicate(Message, BQS), {Result, State #state { backing_queue_state = BQS1 }}; {ok, published} -> %% It already got published when we were a slave and no |
