diff options
author | Ted Ross <tross@apache.org> | 2009-10-15 21:38:07 +0000 |
---|---|---|
committer | Ted Ross <tross@apache.org> | 2009-10-15 21:38:07 +0000 |
commit | 6416726d452570462d559632f6d25161c7da31fe (patch) | |
tree | 40e33563d51a892220037c9856a1fafce7a09339 /cpp/src/qmf/engine/BrokerProxyImpl.h | |
parent | eee3bc498140a3e3e6c2b18e34c579d9c1b7738a (diff) | |
download | qpid-python-6416726d452570462d559632f6d25161c7da31fe.tar.gz |
Bug fix: Console sent get-requests (by objectId) to all agents, not just the agent
identified in the objectId.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@825672 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qmf/engine/BrokerProxyImpl.h')
-rw-r--r-- | cpp/src/qmf/engine/BrokerProxyImpl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qmf/engine/BrokerProxyImpl.h b/cpp/src/qmf/engine/BrokerProxyImpl.h index 798a5fdc76..b651b52345 100644 --- a/cpp/src/qmf/engine/BrokerProxyImpl.h +++ b/cpp/src/qmf/engine/BrokerProxyImpl.h @@ -139,7 +139,7 @@ namespace engine { uint32_t agentCount() const; const AgentProxy* getAgent(uint32_t idx) const; void sendQuery(const Query& query, void* context, const AgentProxy* agent); - void sendGetRequestLH(SequenceContext::Ptr queryContext, const Query& query, const AgentProxy* agent); + bool sendGetRequestLH(SequenceContext::Ptr queryContext, const Query& query, const AgentProxy* agent); std::string encodeMethodArguments(const SchemaMethod* schema, const Value* args, qpid::framing::Buffer& buffer); void sendMethodRequest(ObjectId* oid, const SchemaObjectClass* cls, const std::string& method, const Value* args, void* context); |