File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed
RabbitMQ.Client/src/client/impl Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -972,8 +972,8 @@ public void HandleBasicGetEmpty()
972
972
public void HandleBasicRecoverOk ( )
973
973
{
974
974
SimpleBlockingRpcContinuation k = ( SimpleBlockingRpcContinuation ) m_continuationQueue . Next ( ) ;
975
- k . HandleCommand ( null ) ;
976
975
OnBasicRecoverOk ( new EventArgs ( ) ) ;
976
+ k . HandleCommand ( null ) ;
977
977
}
978
978
979
979
public abstract ConnectionTuneDetails ConnectionStartOk ( IDictionary clientProperties ,
Original file line number Diff line number Diff line change 59
59
using System ;
60
60
using System . IO ;
61
61
using System . Text ;
62
- using System . Threading ;
63
62
using System . Collections ;
64
63
65
64
using RabbitMQ . Client . Impl ;
@@ -123,7 +122,6 @@ public void TestRecoverCallback()
123
122
int callbackCount = 0 ;
124
123
Channel . BasicRecoverOk += ( sender , eventArgs ) => callbackCount ++ ;
125
124
Channel . BasicRecover ( false ) ;
126
- Thread . Sleep ( 100 ) ;
127
125
Assert . AreEqual ( 1 , callbackCount ) ;
128
126
}
129
127
You can’t perform that action at this time.
0 commit comments