Skip to content

Commit b48ddef

Browse files
committed
Upgrade to RSocket 1.0.1
1 parent d0a9e35 commit b48ddef

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ configure(allprojects) { project ->
2929
mavenBom "com.fasterxml.jackson:jackson-bom:2.10.4"
3030
mavenBom "io.netty:netty-bom:4.1.50.Final"
3131
mavenBom "io.projectreactor:reactor-bom:Dysprosium-SR8"
32-
mavenBom "io.rsocket:rsocket-bom:1.0.0"
32+
mavenBom "io.rsocket:rsocket-bom:1.0.1"
3333
mavenBom "org.eclipse.jetty:jetty-bom:9.4.29.v20200521"
3434
mavenBom "org.jetbrains.kotlin:kotlin-bom:1.3.72"
3535
mavenBom "org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.3.5"

spring-messaging/src/test/java/org/springframework/messaging/rsocket/DefaultRSocketRequesterBuilderTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public class DefaultRSocketRequesterBuilderTests {
7575
@BeforeEach
7676
public void setup() {
7777
this.transport = mock(ClientTransport.class);
78-
given(this.transport.connect(anyInt())).willReturn(Mono.just(this.connection));
78+
given(this.transport.connect()).willReturn(Mono.just(this.connection));
7979
}
8080

8181

@@ -106,7 +106,7 @@ public void rsocketConnectorConfigurer() {
106106

107107
// RSocketStrategies and RSocketConnector configurers should have been called
108108

109-
verify(this.transport).connect(anyInt());
109+
verify(this.transport).connect();
110110
verify(strategiesConfigurer).accept(any(RSocketStrategies.Builder.class));
111111
verify(factoryConfigurer).configure(any(io.rsocket.RSocketFactory.ClientRSocketFactory.class));
112112
assertThat(this.connectorConfigurer.connector()).isNotNull();

0 commit comments

Comments
 (0)