diff options
author | Gordon Sim <gsim@apache.org> | 2009-03-06 14:10:35 +0000 |
---|---|---|
committer | Gordon Sim <gsim@apache.org> | 2009-03-06 14:10:35 +0000 |
commit | 9fa04de677291450ec559bde3155f9b8cde7a787 (patch) | |
tree | 0de3ca4e69ea0c679efb068c5c3bc11764757d29 /cpp/src/qpid/cluster/UpdateClient.cpp | |
parent | 87beda537fdf425b8cc8f0a6c8e4273742f0b3a2 (diff) | |
download | qpid-python-9fa04de677291450ec559bde3155f9b8cde7a787.tar.gz |
QPID-1719: Ensure management object id remain in sync across cluster.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@750910 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/cluster/UpdateClient.cpp')
-rw-r--r-- | cpp/src/qpid/cluster/UpdateClient.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/cluster/UpdateClient.cpp b/cpp/src/qpid/cluster/UpdateClient.cpp index 7e349905ab..d5e6635c45 100644 --- a/cpp/src/qpid/cluster/UpdateClient.cpp +++ b/cpp/src/qpid/cluster/UpdateClient.cpp @@ -98,7 +98,7 @@ UpdateClient::UpdateClient(const MemberId& updater, const MemberId& updatee, con done(ok), failed(fail), connectionSettings(cs) { connection.open(url, cs); - session = connection.newSession("update_shared"); + session = connection.newSession(UPDATE); } UpdateClient::~UpdateClient() {} |