diff options
author | Ted Ross <tross@apache.org> | 2009-09-21 16:24:38 +0000 |
---|---|---|
committer | Ted Ross <tross@apache.org> | 2009-09-21 16:24:38 +0000 |
commit | 4c9e6b30e9410cb32367be87ca9bbf941df750dc (patch) | |
tree | b64a637ec4e4edf0c5240d0cfcc9b006f42b486c /cpp/src/qmf/ObjectIdImpl.cpp | |
parent | a5283e144f9107e3e735379ddd68d8d29e9fdb53 (diff) | |
download | qpid-python-4c9e6b30e9410cb32367be87ca9bbf941df750dc.tar.gz |
Added Ruby test infrastructure and Console tests in Ruby
Fixed issues identified by the new tests:
- Improper formatting of object-id in get-query
- Remote (non-broker-resident) agents not visible to the console
- object.update() and object.merge() not implemented
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@817312 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qmf/ObjectIdImpl.cpp')
-rw-r--r-- | cpp/src/qmf/ObjectIdImpl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qmf/ObjectIdImpl.cpp b/cpp/src/qmf/ObjectIdImpl.cpp index b993c2dbdf..90daf204c8 100644 --- a/cpp/src/qmf/ObjectIdImpl.cpp +++ b/cpp/src/qmf/ObjectIdImpl.cpp @@ -115,7 +115,7 @@ std::string ObjectIdImpl::asString() const { stringstream val; - val << getFlags() << "-" << getSequence() << "-" << getBrokerBank() << "-" << + val << (int) getFlags() << "-" << getSequence() << "-" << getBrokerBank() << "-" << getAgentBank() << "-" << getObjectNum(); return val.str(); } |