diff options
| author | Alan Conway <aconway@apache.org> | 2008-08-05 16:24:25 +0000 |
|---|---|---|
| committer | Alan Conway <aconway@apache.org> | 2008-08-05 16:24:25 +0000 |
| commit | 6bed4cf29dda54560af44d16143fa4b24b65245b (patch) | |
| tree | c5752b2219a78e786dbbc6f532ce5d4bcbd5c858 /cpp/src/qpid/broker/Broker.cpp | |
| parent | bb667cf14d21dc8a873636a9cf5e3017f4aa5503 (diff) | |
| download | qpid-python-6bed4cf29dda54560af44d16143fa4b24b65245b.tar.gz | |
Fix sporadic shutdown hang in clustered broker.
Add start|stop_cluster test scripts
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@682774 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/broker/Broker.cpp')
| -rw-r--r-- | cpp/src/qpid/broker/Broker.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/broker/Broker.cpp b/cpp/src/qpid/broker/Broker.cpp index d876f6d253..a713a6c345 100644 --- a/cpp/src/qpid/broker/Broker.cpp +++ b/cpp/src/qpid/broker/Broker.cpp @@ -292,11 +292,11 @@ void Broker::shutdown() { // call any function that is not async-signal safe. // Any unsafe shutdown actions should be done in the destructor. poller->shutdown(); - finalize(); // Finalize any plugins. } Broker::~Broker() { shutdown(); + finalize(); // Finalize any plugins. delete store; if (config.auth) { #if HAVE_SASL |
