From ffe7d369e3a2c2304743b6a54ff3d4fb6f95a056 Mon Sep 17 00:00:00 2001 From: Ted Ross Date: Mon, 21 Sep 2009 16:24:38 +0000 Subject: 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@817312 13f79535-47bb-0310-9956-ffa450edef68 --- qpid/cpp/src/qmf/ObjectIdImpl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'qpid/cpp/src/qmf/ObjectIdImpl.cpp') diff --git a/qpid/cpp/src/qmf/ObjectIdImpl.cpp b/qpid/cpp/src/qmf/ObjectIdImpl.cpp index b993c2dbdf..90daf204c8 100644 --- a/qpid/cpp/src/qmf/ObjectIdImpl.cpp +++ b/qpid/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(); } -- cgit v1.2.1