diff options
author | Ted Ross <tross@apache.org> | 2010-07-22 21:57:37 +0000 |
---|---|---|
committer | Ted Ross <tross@apache.org> | 2010-07-22 21:57:37 +0000 |
commit | d06a4f9aa864b15d63ee967c5337699dc76a4157 (patch) | |
tree | 8972c7487e61979e9484132da56c19e08993b924 /qpid/cpp/bindings/qmf/tests/python_agent.py | |
parent | 786813d0fad8f8a72a882ca28385850351bb2843 (diff) | |
download | qpid-python-d06a4f9aa864b15d63ee967c5337699dc76a4157.tar.gz |
Bugfix: agent label in wrapped (python, ruby) qmf agent was not transmitted to the
consoles.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@966871 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/bindings/qmf/tests/python_agent.py')
-rw-r--r-- | qpid/cpp/bindings/qmf/tests/python_agent.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/bindings/qmf/tests/python_agent.py b/qpid/cpp/bindings/qmf/tests/python_agent.py index e22c80a813..28ba47e1bb 100644 --- a/qpid/cpp/bindings/qmf/tests/python_agent.py +++ b/qpid/cpp/bindings/qmf/tests/python_agent.py @@ -263,7 +263,7 @@ class App(qmf.AgentHandler): self._connection = qmf.Connection(self._settings) # Instantiate an Agent to serve me queries and method calls - self._agent = qmf.Agent(self) + self._agent = qmf.Agent(self, "agent_test_label") # Dynamically define the parent and child schemas, then # register them with the agent |