You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ac...@apache.org on 2007/03/05 23:53:11 UTC

svn commit: r514903 - /incubator/qpid/trunk/qpid/cpp/lib/broker/SessionHandlerImpl.cpp

Author: aconway
Date: Mon Mar  5 14:53:11 2007
New Revision: 514903

URL: http://svn.apache.org/viewvc?view=rev&rev=514903
Log:
Send missing recoverOk response to recover.

Modified:
    incubator/qpid/trunk/qpid/cpp/lib/broker/SessionHandlerImpl.cpp

Modified: incubator/qpid/trunk/qpid/cpp/lib/broker/SessionHandlerImpl.cpp
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/cpp/lib/broker/SessionHandlerImpl.cpp?view=diff&rev=514903&r1=514902&r2=514903
==============================================================================
--- incubator/qpid/trunk/qpid/cpp/lib/broker/SessionHandlerImpl.cpp (original)
+++ incubator/qpid/trunk/qpid/cpp/lib/broker/SessionHandlerImpl.cpp Mon Mar  5 14:53:11 2007
@@ -445,6 +445,7 @@
         
 void SessionHandlerImpl::BasicHandlerImpl::recover(u_int16_t channel, bool requeue){
     parent->getChannel(channel)->recover(requeue);
+    parent->client->getBasic().recoverOk(channel);
 } 
 
 void SessionHandlerImpl::TxHandlerImpl::select(u_int16_t channel){