summaryrefslogtreecommitdiff
path: root/qpid/cpp
diff options
context:
space:
mode:
authorCharles E. Rolke <chug@apache.org>2012-12-20 15:20:35 +0000
committerCharles E. Rolke <chug@apache.org>2012-12-20 15:20:35 +0000
commite6536c1ea8477e210338c2da1958e7efa83304fb (patch)
tree6529eba35a2175068e7edfe8a152c5d3a1a1d1f7 /qpid/cpp
parent3830af935e22b77f985c5d9cbd068780e93f5672 (diff)
downloadqpid-python-e6536c1ea8477e210338c2da1958e7efa83304fb.tar.gz
QPID-4514: Remove obsolete cluster code: still more in plugin
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1424520 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp')
-rw-r--r--qpid/cpp/src/qpid/legacystore/StorePlugin.cpp9
1 files changed, 2 insertions, 7 deletions
diff --git a/qpid/cpp/src/qpid/legacystore/StorePlugin.cpp b/qpid/cpp/src/qpid/legacystore/StorePlugin.cpp
index b1e3aa4240..6003c6a2f3 100644
--- a/qpid/cpp/src/qpid/legacystore/StorePlugin.cpp
+++ b/qpid/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()