diff options
Diffstat (limited to 'cpp/src/qpid/management/ManagementTopicExchange.cpp')
| -rw-r--r-- | cpp/src/qpid/management/ManagementTopicExchange.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cpp/src/qpid/management/ManagementTopicExchange.cpp b/cpp/src/qpid/management/ManagementTopicExchange.cpp index c8bfef3785..d1c2b1c34f 100644 --- a/cpp/src/qpid/management/ManagementTopicExchange.cpp +++ b/cpp/src/qpid/management/ManagementTopicExchange.cpp @@ -53,11 +53,12 @@ void ManagementTopicExchange::route(Deliverable& msg) bool ManagementTopicExchange::bind(Queue::shared_ptr queue, const std::string& routingKey, - const qpid::framing::FieldTable* args) + const qpid::framing::FieldTable* args, + AsyncStore* const store) { if (qmfVersion == 1) managementAgent->clientAdded(routingKey); - return TopicExchange::bind(queue, routingKey, args); + return TopicExchange::bind(queue, routingKey, args, store); } void ManagementTopicExchange::setManagmentAgent(ManagementAgent* agent, int qv) |
