File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
projects/client/Unit/src/unit Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 52
52
categories :
53
53
except :
54
54
- RequireSMP
55
+ - LongRunning
55
56
56
57
artifacts :
57
58
- path : ' **\*.nupkg'
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ public override void Init()
60
60
Model = Conn . CreateModel ( ) ;
61
61
}
62
62
63
- [ Test , Timeout ( 5000 ) ]
63
+ [ Test , Timeout ( 16000 ) ]
64
64
public void TestConsumerCancellationNotification ( )
65
65
{
66
66
var q = Guid . NewGuid ( ) . ToString ( ) ;
@@ -70,11 +70,11 @@ public void TestConsumerCancellationNotification()
70
70
sub . Consumer . ConsumerCancelled += ( _sender , _args ) =>
71
71
{
72
72
sub . Close ( ) ;
73
- latch . Set ( ) ;
74
73
Conn . Close ( ) ;
74
+ latch . Set ( ) ;
75
75
} ;
76
76
this . Model . QueueDelete ( q ) ;
77
- Wait ( latch , TimeSpan . FromSeconds ( 4 ) ) ;
77
+ Wait ( latch , TimeSpan . FromSeconds ( 8 ) ) ;
78
78
}
79
79
}
80
80
}
You can’t perform that action at this time.
0 commit comments