Commit b7e092e8 authored by Phillip Webb's avatar Phillip Webb

Fix upstream RSocket method renames

Align with the recent upstream Spring Framework changes triggered by
their issue #23170.
parent 73cd1c9c
...@@ -69,7 +69,7 @@ public class RSocketServerAutoConfiguration { ...@@ -69,7 +69,7 @@ public class RSocketServerAutoConfiguration {
RSocketWebSocketNettyRouteProvider rSocketWebsocketRouteProvider(RSocketProperties properties, RSocketWebSocketNettyRouteProvider rSocketWebsocketRouteProvider(RSocketProperties properties,
RSocketMessageHandler messageHandler) { RSocketMessageHandler messageHandler) {
return new RSocketWebSocketNettyRouteProvider(properties.getServer().getMappingPath(), return new RSocketWebSocketNettyRouteProvider(properties.getServer().getMappingPath(),
messageHandler.serverAcceptor()); messageHandler.serverResponder());
} }
} }
...@@ -101,7 +101,7 @@ public class RSocketServerAutoConfiguration { ...@@ -101,7 +101,7 @@ public class RSocketServerAutoConfiguration {
@ConditionalOnMissingBean @ConditionalOnMissingBean
RSocketServerBootstrap rSocketServerBootstrap(RSocketServerFactory rSocketServerFactory, RSocketServerBootstrap rSocketServerBootstrap(RSocketServerFactory rSocketServerFactory,
RSocketMessageHandler rSocketMessageHandler) { RSocketMessageHandler rSocketMessageHandler) {
return new RSocketServerBootstrap(rSocketServerFactory, rSocketMessageHandler.serverAcceptor()); return new RSocketServerBootstrap(rSocketServerFactory, rSocketMessageHandler.serverResponder());
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment