diff options
| author | Gordon Sim <gsim@apache.org> | 2010-06-30 21:55:17 +0000 |
|---|---|---|
| committer | Gordon Sim <gsim@apache.org> | 2010-06-30 21:55:17 +0000 |
| commit | e5b931c37b591ed19fa5a63afd2d05d6f1fca13e (patch) | |
| tree | 4920e051a43724d37916e8613dba6bb27ef04ec8 /cpp/src/qpid/client | |
| parent | edff721d2ca6140fe2767d035cbe8b3709fb6e72 (diff) | |
| download | qpid-python-e5b931c37b591ed19fa5a63afd2d05d6f1fca13e.tar.gz | |
QPID-664: corrected option name for setting subscribe options on a queue
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@959451 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/client')
| -rw-r--r-- | cpp/src/qpid/client/amqp0_10/AddressResolution.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/qpid/client/amqp0_10/AddressResolution.cpp b/cpp/src/qpid/client/amqp0_10/AddressResolution.cpp index b819906677..f1295a3b66 100644 --- a/cpp/src/qpid/client/amqp0_10/AddressResolution.cpp +++ b/cpp/src/qpid/client/amqp0_10/AddressResolution.cpp @@ -452,8 +452,8 @@ QueueSource::QueueSource(const Address& address) : //extract subscription arguments from address options (nb: setting //of accept-mode/acquire-mode/destination controlled though other //options) - exclusive = Opt(address)/NODE/LINK/X_SUBSCRIBE/EXCLUSIVE; - (Opt(address)/NODE/LINK/X_SUBSCRIBE/ARGUMENTS).collect(options); + exclusive = Opt(address)/LINK/X_SUBSCRIBE/EXCLUSIVE; + (Opt(address)/LINK/X_SUBSCRIBE/ARGUMENTS).collect(options); } void QueueSource::subscribe(qpid::client::AsyncSession& session, const std::string& destination) |
