diff options
| author | Charles E. Rolke <chug@apache.org> | 2013-01-07 20:17:19 +0000 |
|---|---|---|
| committer | Charles E. Rolke <chug@apache.org> | 2013-01-07 20:17:19 +0000 |
| commit | 5d0a9fcb0f62fbc0702d40cda0a1ea21ebbfdade (patch) | |
| tree | 6c7fcf69186928e280302f1fc7db4daf419a7125 /cpp/src/qpid/legacystore/StorePlugin.cpp | |
| parent | 726a53b684befe9e3a18ad88db3142951cf4cb7d (diff) | |
| download | qpid-python-5d0a9fcb0f62fbc0702d40cda0a1ea21ebbfdade.tar.gz | |
QPID-1726 ASF licensed Qpid store
Update legacystore from changes in source svn revisions 4514 to 4528.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1429990 13f79535-47bb-0310-9956-ffa450edef68
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() |
