Skip to content

Commit 0bc84d3

Browse files
committed
fixes
Signed-off-by: Oleh Dokuka <[email protected]>
1 parent 18a22a0 commit 0bc84d3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

rsocket-test/src/main/java/io/rsocket/test/TransportTest.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -642,7 +642,9 @@ public String expectedPayloadMetadata() {
642642
}
643643

644644
public void awaitClosed() {
645-
Mono.whenDelayError(server.onClose().log("server"), client.onClose().log("client"))
645+
Mono.whenDelayError(
646+
server.onClose().delaySubscription(Duration.ofSeconds(1)).log("server"),
647+
client.onClose().log("client"))
646648
.block(Duration.ofMinutes(1));
647649
}
648650

0 commit comments

Comments
 (0)