diff options
| author | Ted Ross <tross@apache.org> | 2010-05-19 13:33:53 +0000 |
|---|---|---|
| committer | Ted Ross <tross@apache.org> | 2010-05-19 13:33:53 +0000 |
| commit | 9e12a1435f15bfe6fea02af060a806a5ca62d68c (patch) | |
| tree | 7a63386b80c704c9f1bcc7013889c765b27f1ba2 | |
| parent | e089a94d22113655badc2a6bf7b6c68c0cbe9055 (diff) | |
| download | qpid-python-9e12a1435f15bfe6fea02af060a806a5ca62d68c.tar.gz | |
Added missing method for ObjectId.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@946180 13f79535-47bb-0310-9956-ffa450edef68
| -rw-r--r-- | qpid/extras/qmf/src/py/qmf/console.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/qpid/extras/qmf/src/py/qmf/console.py b/qpid/extras/qmf/src/py/qmf/console.py index 1cd2acbcb7..907badbcdd 100644 --- a/qpid/extras/qmf/src/py/qmf/console.py +++ b/qpid/extras/qmf/src/py/qmf/console.py @@ -1746,6 +1746,11 @@ class ObjectId: def getAgentBank(self): return self.agentName + def getV2RoutingKey(self): + if self.agentName == '0': + return "broker" + return self.agentName + def getObject(self): return self.objectName |
