diff options
| author | Ted Ross <tross@apache.org> | 2009-05-20 15:17:21 +0000 |
|---|---|---|
| committer | Ted Ross <tross@apache.org> | 2009-05-20 15:17:21 +0000 |
| commit | a2c01a4f2dc35aab8b905ad7efb5c62305e6d48b (patch) | |
| tree | 141debb969aa98cc379bc6a78c41a9bf09ca6e71 /cpp/src/qpid/broker/ExchangeRegistry.cpp | |
| parent | 285ca60cf814ce4b96813e929ced910d53097aef (diff) | |
| download | qpid-python-a2c01a4f2dc35aab8b905ad7efb5c62305e6d48b.tar.gz | |
Fixed a regression affecting plugin-exchanges.
Plugin exchanges (i.e. the XML exchange) do not get the broker pointer and
therefore can not register themselves with the management agent.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@776729 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/broker/ExchangeRegistry.cpp')
| -rw-r--r-- | cpp/src/qpid/broker/ExchangeRegistry.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/broker/ExchangeRegistry.cpp b/cpp/src/qpid/broker/ExchangeRegistry.cpp index 85bd65e456..59d516c089 100644 --- a/cpp/src/qpid/broker/ExchangeRegistry.cpp +++ b/cpp/src/qpid/broker/ExchangeRegistry.cpp @@ -60,7 +60,7 @@ pair<Exchange::shared_ptr, bool> ExchangeRegistry::declare(const string& name, c if (i == factory.end()) { throw UnknownExchangeTypeException(); } else { - exchange = i->second(name, durable, args, parent); + exchange = i->second(name, durable, args, parent, broker); } } exchanges[name] = exchange; |
