diff options
Diffstat (limited to 'cpp/src/qpid/legacystore/StorePlugin.cpp')
| -rw-r--r-- | cpp/src/qpid/legacystore/StorePlugin.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/qpid/legacystore/StorePlugin.cpp b/cpp/src/qpid/legacystore/StorePlugin.cpp index e8795c15e6..f9b77ce02c 100644 --- a/cpp/src/qpid/legacystore/StorePlugin.cpp +++ b/cpp/src/qpid/legacystore/StorePlugin.cpp @@ -44,7 +44,7 @@ struct StorePlugin : public Plugin { { Broker* broker = dynamic_cast<Broker*>(&target); if (!broker) return; - store.reset(new MessageStoreImpl(broker->getTimer())); + store.reset(new MessageStoreImpl(broker)); DataDir& dataDir = broker->getDataDir (); if (options.storeDir.empty ()) { @@ -65,7 +65,7 @@ struct StorePlugin : public Plugin { if (!broker) return; if (!store) return; QPID_LOG(info, "Enabling management instrumentation for the store."); - store->initManagement(broker); + store->initManagement(); } void finalize() |
