diff options
| author | Gordon Sim <gsim@apache.org> | 2007-06-06 16:39:03 +0000 |
|---|---|---|
| committer | Gordon Sim <gsim@apache.org> | 2007-06-06 16:39:03 +0000 |
| commit | 70a3cdf33b3e38ee26ee2840a55f83ebd26589b4 (patch) | |
| tree | 07c3dab5cb7d97158737c36efa1caa8d9254c266 /cpp/src/qpid/broker/BrokerQueue.cpp | |
| parent | 480e99cfc6071f15bc7135895cf2b60d0dd9c981 (diff) | |
| download | qpid-python-70a3cdf33b3e38ee26ee2840a55f83ebd26589b4.tar.gz | |
Merged in channel.flow implementation and interoperability tests.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@544879 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/broker/BrokerQueue.cpp')
| -rw-r--r-- | cpp/src/qpid/broker/BrokerQueue.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/cpp/src/qpid/broker/BrokerQueue.cpp b/cpp/src/qpid/broker/BrokerQueue.cpp index ee1a913a96..3521e63444 100644 --- a/cpp/src/qpid/broker/BrokerQueue.cpp +++ b/cpp/src/qpid/broker/BrokerQueue.cpp @@ -78,10 +78,7 @@ bool Queue::dispatch(Message::shared_ptr& msg){ if(consumers.empty()){ return false; }else if(exclusive){ - if(!exclusive->deliver(msg)){ - QPID_LOG(warning, "Dropping undeliverable message from queue with exclusive consumer."); - } - return true; + return exclusive->deliver(msg); }else{ //deliver to next consumer next = next % consumers.size(); |
