diff options
author | Andrew Stitcher <astitcher@apache.org> | 2007-02-09 02:16:03 +0000 |
---|---|---|
committer | Andrew Stitcher <astitcher@apache.org> | 2007-02-09 02:16:03 +0000 |
commit | 8cf4a0b8ebaa6075a1f083a294b1fee90bd4d196 (patch) | |
tree | 77670233364cef083ef40b9878297a64c16a160b /cpp/lib/broker/BrokerAdapter.cpp | |
parent | f197f0c88e1f5ed37a14617b1006f6579c4319e7 (diff) | |
download | qpid-python-8cf4a0b8ebaa6075a1f083a294b1fee90bd4d196.tar.gz |
r1104@fuschia: andrew | 2007-02-09 02:14:00 +0000
Initial implementation of Message.get delivery
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/qpid.0-9@505139 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/lib/broker/BrokerAdapter.cpp')
-rw-r--r-- | cpp/lib/broker/BrokerAdapter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/lib/broker/BrokerAdapter.cpp b/cpp/lib/broker/BrokerAdapter.cpp index bdf41266ce..012ec052e8 100644 --- a/cpp/lib/broker/BrokerAdapter.cpp +++ b/cpp/lib/broker/BrokerAdapter.cpp @@ -289,7 +289,7 @@ void BrokerAdapter::BrokerAdapter::BasicHandlerImpl::publish( void BrokerAdapter::BrokerAdapter::BasicHandlerImpl::get(const MethodContext& context, u_int16_t /*ticket*/, const string& queueName, bool noAck){ Queue::shared_ptr queue = connection.getQueue(queueName, channel.getId()); - if(!connection.getChannel(channel.getId()).get(queue, !noAck)){ + if(!connection.getChannel(channel.getId()).get(queue, "", !noAck)){ string clusterId;//not used, part of an imatix hack connection.client->getBasic().getEmpty(context, clusterId); |