diff options
| author | Charles E. Rolke <chug@apache.org> | 2012-12-20 15:20:35 +0000 |
|---|---|---|
| committer | Charles E. Rolke <chug@apache.org> | 2012-12-20 15:20:35 +0000 |
| commit | 956b56bfb06a8355d28b750ef9d16aba25067f5f (patch) | |
| tree | 56e3ca3f3184d4a665d3376487819d271997b518 /cpp/src | |
| parent | 0495743ee8db9060872fe871af13f14fb5d19a8b (diff) | |
| download | qpid-python-956b56bfb06a8355d28b750ef9d16aba25067f5f.tar.gz | |
QPID-4514: Remove obsolete cluster code: still more in plugin
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1424520 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
| -rw-r--r-- | cpp/src/qpid/legacystore/StorePlugin.cpp | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/cpp/src/qpid/legacystore/StorePlugin.cpp b/cpp/src/qpid/legacystore/StorePlugin.cpp index b1e3aa4240..6003c6a2f3 100644 --- a/cpp/src/qpid/legacystore/StorePlugin.cpp +++ b/cpp/src/qpid/legacystore/StorePlugin.cpp @@ -64,13 +64,8 @@ struct StorePlugin : public Plugin { Broker* broker = dynamic_cast<Broker*>(&target); if (!broker) return; if (!store) return; - // Not done in earlyInitialize as the Broker::isInCluster test won't work there. - if (broker->isInCluster()) { - QPID_LOG(info, "Disabling management instrumentation for the store in a cluster."); - } else { - QPID_LOG(info, "Enabling management instrumentation for the store."); - store->initManagement(broker); - } + QPID_LOG(info, "Enabling management instrumentation for the store."); + store->initManagement(broker); } void finalize() |
