summaryrefslogtreecommitdiff
path: root/cpp/lib/broker/BrokerQueue.cpp
diff options
context:
space:
mode:
authorGordon Sim <gsim@apache.org>2006-12-06 17:51:42 +0000
committerGordon Sim <gsim@apache.org>2006-12-06 17:51:42 +0000
commitf2d0f0cfbfebb082e92f28b8d1b2987a0f20acf6 (patch)
treed71e0a7854dcfbef75040ee426b53f6369e0cc7a /cpp/lib/broker/BrokerQueue.cpp
parentf8c692d37104a95ad245402ffe0d7d6b7c4ea816 (diff)
downloadqpid-python-f2d0f0cfbfebb082e92f28b8d1b2987a0f20acf6.tar.gz
Allow non-durable messages to be lazy-loaded. Cleanup of lazy-loaded messages
that are never enqueued. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@483165 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/lib/broker/BrokerQueue.cpp')
-rw-r--r--cpp/lib/broker/BrokerQueue.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/lib/broker/BrokerQueue.cpp b/cpp/lib/broker/BrokerQueue.cpp
index b0e1f20b01..a8c5343ca3 100644
--- a/cpp/lib/broker/BrokerQueue.cpp
+++ b/cpp/lib/broker/BrokerQueue.cpp
@@ -189,14 +189,14 @@ bool Queue::canAutoDelete() const{
void Queue::enqueue(TransactionContext* ctxt, Message::shared_ptr& msg, const string * const xid)
{
if (msg->isPersistent() && store) {
- store->enqueue(ctxt, msg, *this, xid);
+ store->enqueue(ctxt, msg.get(), *this, xid);
}
}
void Queue::dequeue(TransactionContext* ctxt, Message::shared_ptr& msg, const string * const xid)
{
if (msg->isPersistent() && store) {
- store->dequeue(ctxt, msg, *this, xid);
+ store->dequeue(ctxt, msg.get(), *this, xid);
}
}