summaryrefslogtreecommitdiff
path: root/cpp/lib/broker/BrokerAdapter.cpp
diff options
context:
space:
mode:
authorAndrew Stitcher <astitcher@apache.org>2007-02-09 00:52:46 +0000
committerAndrew Stitcher <astitcher@apache.org>2007-02-09 00:52:46 +0000
commitf197f0c88e1f5ed37a14617b1006f6579c4319e7 (patch)
tree63481b59b90c60e69550da9b95d268f36e1bcc84 /cpp/lib/broker/BrokerAdapter.cpp
parent5611851b2094372ba5cb77c93ba475e95ce76437 (diff)
downloadqpid-python-f197f0c88e1f5ed37a14617b1006f6579c4319e7.tar.gz
r1102@fuschia: andrew | 2007-02-09 00:52:04 +0000
Got ack working for the non batched case Small tidy up in broker Channel git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/qpid.0-9@505108 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/lib/broker/BrokerAdapter.cpp')
-rw-r--r--cpp/lib/broker/BrokerAdapter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/lib/broker/BrokerAdapter.cpp b/cpp/lib/broker/BrokerAdapter.cpp
index 625dda1480..bdf41266ce 100644
--- a/cpp/lib/broker/BrokerAdapter.cpp
+++ b/cpp/lib/broker/BrokerAdapter.cpp
@@ -280,7 +280,7 @@ void BrokerAdapter::BrokerAdapter::BasicHandlerImpl::publish(
BasicMessage* msg = new BasicMessage(
&connection, exchangeName, routingKey, mandatory, immediate,
context.methodBody);
- channel.handlePublish(msg, exchange);
+ channel.handlePublish(msg);
}else{
throw ChannelException(
404, "Exchange not found '" + exchangeName + "'");