summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/broker/Queue.cpp
diff options
context:
space:
mode:
authorGordon Sim <gsim@apache.org>2013-05-24 00:50:47 +0000
committerGordon Sim <gsim@apache.org>2013-05-24 00:50:47 +0000
commit798479e02fabf0b86bccb64334322c5222677df4 (patch)
treef113cb1c0f801d810ae6e5cb5ac25435d218c2c6 /cpp/src/qpid/broker/Queue.cpp
parent9e8535fb05da0640a93791ddf8328a12773280e4 (diff)
downloadqpid-python-798479e02fabf0b86bccb64334322c5222677df4.tar.gz
QPID-4859: ensure flush is called on journals
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1485909 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/broker/Queue.cpp')
-rw-r--r--cpp/src/qpid/broker/Queue.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/broker/Queue.cpp b/cpp/src/qpid/broker/Queue.cpp
index f82fc815c9..c852a61f6e 100644
--- a/cpp/src/qpid/broker/Queue.cpp
+++ b/cpp/src/qpid/broker/Queue.cpp
@@ -846,7 +846,7 @@ bool Queue::enqueue(TransactionContext* ctxt, Message& msg)
// when it considers the message stored.
boost::intrusive_ptr<PersistableMessage> pmsg = msg.getPersistentContext();
assert(pmsg);
- pmsg->enqueueAsync(shared_from_this(), store);
+ pmsg->enqueueAsync(shared_from_this());
try {
store->enqueue(ctxt, pmsg, *this);
} catch (...) {