diff options
author | Ted Ross <tross@apache.org> | 2011-07-12 11:49:32 +0000 |
---|---|---|
committer | Ted Ross <tross@apache.org> | 2011-07-12 11:49:32 +0000 |
commit | 9e1c8d1ab0d3f014d2ac3800e59390c2f958232f (patch) | |
tree | b4090d05ecf8ecea337867980942feb1342bd40a /cpp/src/qmf/ConsoleSession.cpp | |
parent | ccd9477cb7338e0f177545a1b947cd1ad12dd2c9 (diff) | |
download | qpid-python-9e1c8d1ab0d3f014d2ac3800e59390c2f958232f.tar.gz |
QPID-3275 - QMF Console asynchronous correlation-id should be scoped to the session, not the specific agent
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1145557 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qmf/ConsoleSession.cpp')
-rw-r--r-- | cpp/src/qmf/ConsoleSession.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qmf/ConsoleSession.cpp b/cpp/src/qmf/ConsoleSession.cpp index 5df0d83f12..7b51d80032 100644 --- a/cpp/src/qmf/ConsoleSession.cpp +++ b/cpp/src/qmf/ConsoleSession.cpp @@ -68,7 +68,7 @@ Subscription ConsoleSession::subscribe(const string& q, const string& f, const s ConsoleSessionImpl::ConsoleSessionImpl(Connection& c, const string& options) : connection(c), domain("default"), maxAgentAgeMinutes(5), listenOnDirect(true), strictSecurity(false), opened(false), thread(0), threadCanceled(false), lastVisit(0), lastAgePass(0), - connectedBrokerInAgentList(false), schemaCache(new SchemaCache()) + connectedBrokerInAgentList(false), schemaCache(new SchemaCache()), nextCorrelator(1) { if (!options.empty()) { qpid::messaging::AddressParser parser(options); |