File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
main/java/io/rsocket/internal
test/java/io/rsocket/internal Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -176,7 +176,6 @@ void drainFused(Subscriber<? super T> a) {
176
176
177
177
Throwable ex = error ;
178
178
if (ex != null ) {
179
- System .out .println ("Send Error" );
180
179
a .onError (ex );
181
180
} else {
182
181
a .onComplete ();
Original file line number Diff line number Diff line change @@ -149,7 +149,7 @@ public void ensureUnboundedProcessorDisposesQueueProperly(boolean withFusionEnab
149
149
name =
150
150
"Ensures that racing between onNext + dispose | downstream async drain) should not cause any issues and leaks" ,
151
151
value = 100000 )
152
- @ Timeout (10 )
152
+ @ Timeout (60 )
153
153
public void ensuresAsyncFusionAndDisposureHasNoDeadlock () {
154
154
final LeaksTrackingByteBufAllocator allocator =
155
155
LeaksTrackingByteBufAllocator .instrument (ByteBufAllocator .DEFAULT );
@@ -176,7 +176,7 @@ public void ensuresAsyncFusionAndDisposureHasNoDeadlock() {
176
176
unboundedProcessor ::dispose ,
177
177
Schedulers .elastic ());
178
178
179
- assertSubscriber .await (Duration .ofSeconds (5 )).values ().forEach (ReferenceCountUtil ::safeRelease );
179
+ assertSubscriber .await (Duration .ofSeconds (50 )).values ().forEach (ReferenceCountUtil ::safeRelease );
180
180
181
181
allocator .assertHasNoLeaks ();
182
182
}
You can’t perform that action at this time.
0 commit comments