summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/asyncStore/Plugin.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/qpid/asyncStore/Plugin.cpp')
-rw-r--r--cpp/src/qpid/asyncStore/Plugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/asyncStore/Plugin.cpp b/cpp/src/qpid/asyncStore/Plugin.cpp
index 4f35e8cd2a..0441e9c082 100644
--- a/cpp/src/qpid/asyncStore/Plugin.cpp
+++ b/cpp/src/qpid/asyncStore/Plugin.cpp
@@ -41,7 +41,7 @@ Plugin::earlyInitialize(Target& target)
m_options.m_storeDir = dataDir.getPath ();
}
- m_store.reset(new qpid::asyncStore::AsyncStoreImpl(broker->getPoller(), m_options));
+ m_store.reset(new qpid::asyncStore::AsyncStoreImpl(broker->getPoller(), m_options, 0)); // TODO: last arg: point to broker instance of AsyncResultQueue
boost::shared_ptr<qpid::broker::AsyncStore> brokerAsyncStore(m_store);
broker->setAsyncStore(brokerAsyncStore);
boost::function<void()> fn = boost::bind(&Plugin::finalize, this);