Upgrade dependencies; fix deprecations

* Prepare for release
This commit is contained in:
Artem Bilan
2020-09-16 11:02:34 -04:00
parent e154067a1f
commit be82e572f5
6 changed files with 42 additions and 34 deletions

View File

@@ -203,7 +203,7 @@ public class RSocketInboundGatewayIntegrationTests {
@EventListener
public void onApplicationEvent(RSocketConnectedEvent event) {
this.clientRequester.emitValue(event.getRequester());
this.clientRequester.tryEmitValue(event.getRequester());
}
}

View File

@@ -596,7 +596,7 @@ public class RSocketOutboundGatewayIntegrationTests {
@ConnectMapping("clientConnect")
void clientConnect(RSocketRequester requester) {
this.clientRequester.emitValue(requester);
this.clientRequester.tryEmitValue(requester);
}
}