Fix upstream RSocket method renames

See gh-17973
This commit is contained in:
dreis2211 2019-08-27 13:59:01 +02:00 committed by Andy Wilkinson
parent c44a6dee3d
commit ec57f0c31f
1 changed files with 2 additions and 2 deletions

View File

@ -71,7 +71,7 @@ public class RSocketServerAutoConfiguration {
RSocketWebSocketNettyRouteProvider rSocketWebsocketRouteProvider(RSocketProperties properties,
RSocketMessageHandler messageHandler) {
return new RSocketWebSocketNettyRouteProvider(properties.getServer().getMappingPath(),
messageHandler.serverResponder());
messageHandler.responder());
}
}
@ -104,7 +104,7 @@ public class RSocketServerAutoConfiguration {
@ConditionalOnMissingBean
RSocketServerBootstrap rSocketServerBootstrap(RSocketServerFactory rSocketServerFactory,
RSocketMessageHandler rSocketMessageHandler) {
return new RSocketServerBootstrap(rSocketServerFactory, rSocketMessageHandler.serverResponder());
return new RSocketServerBootstrap(rSocketServerFactory, rSocketMessageHandler.responder());
}
@Bean