diff options
| author | Ted Ross <tross@apache.org> | 2010-04-23 19:07:14 +0000 |
|---|---|---|
| committer | Ted Ross <tross@apache.org> | 2010-04-23 19:07:14 +0000 |
| commit | 1256ed9262d0a8f769a72eb83b1669b33e1f7f59 (patch) | |
| tree | 7b7e72b21445fdd2f6715e0f90cd7a82c73e2a0a /cpp/src/qpid/management/ManagementDirectExchange.cpp | |
| parent | 4d8b7a47d1c774ccd4899c2f40acff744cf79a75 (diff) | |
| download | qpid-python-1256ed9262d0a8f769a72eb83b1669b33e1f7f59.tar.gz | |
Cluster management improvements:
1) Enable all management methods via QMFv2 for clusters
2) Disable all management methods via QMFv1 for clusters
3) The broker-resident management agent can handle both v1 and v2 method calls
4) qmf.console (Python) now works with new and old brokers by detecting whether the broker
can handle v2 commands
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@937472 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/management/ManagementDirectExchange.cpp')
| -rw-r--r-- | cpp/src/qpid/management/ManagementDirectExchange.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/management/ManagementDirectExchange.cpp b/cpp/src/qpid/management/ManagementDirectExchange.cpp index 6dc41ef073..1d5f8bbd6b 100644 --- a/cpp/src/qpid/management/ManagementDirectExchange.cpp +++ b/cpp/src/qpid/management/ManagementDirectExchange.cpp @@ -47,7 +47,7 @@ void ManagementDirectExchange::route(Deliverable& msg, bool routeIt = true; if (managementAgent) - routeIt = managementAgent->dispatchCommand(msg, routingKey, args, false /*direct*/); + routeIt = managementAgent->dispatchCommand(msg, routingKey, args, false, qmfVersion); if (routeIt) DirectExchange::route(msg, routingKey, args); |
