Skip to content

Commit 30f1420

Browse files
committed
Disable Rsocket fire-n-forget for race condition
1 parent 1093430 commit 30f1420

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

spring-integration-rsocket/src/test/java/org/springframework/integration/rsocket/outbound/RSocketOutboundGatewayIntegrationTests.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
import org.junit.jupiter.api.AfterAll;
2727
import org.junit.jupiter.api.BeforeAll;
2828
import org.junit.jupiter.api.BeforeEach;
29+
import org.junit.jupiter.api.Disabled;
2930
import org.junit.jupiter.api.Test;
3031
import org.junit.jupiter.api.TestInfo;
3132
import reactor.core.Disposable;
@@ -138,11 +139,13 @@ void setupTest(TestInfo testInfo) {
138139
}
139140
}
140141

142+
@Disabled("Some race condition on subscriber dispose()")
141143
@Test
142144
void clientFireAndForget() {
143145
fireAndForget(this.inputChannel, this.resultChannel, serverController, null);
144146
}
145147

148+
@Disabled("Some race condition on subscriber dispose()")
146149
@Test
147150
void serverFireAndForget() {
148151
fireAndForget(serverInputChannel, serverResultChannel, this.clientController, this.serverRsocketRequester);

0 commit comments

Comments
 (0)