Skip to content

Commit

Permalink
Merge pull request spring-projects#17973 from dreis2211
Browse files Browse the repository at this point in the history
* spring-projectsgh-17973:
  Fix upstream RSocket method renames

Closes spring-projectsgh-17973
  • Loading branch information
wilkinsona committed Aug 27, 2019
2 parents c44a6de + ec57f0c commit e3c87cb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ static class WebFluxServerAutoConfiguration {
RSocketWebSocketNettyRouteProvider rSocketWebsocketRouteProvider(RSocketProperties properties,
RSocketMessageHandler messageHandler) {
return new RSocketWebSocketNettyRouteProvider(properties.getServer().getMappingPath(),
messageHandler.serverResponder());
messageHandler.responder());
}

}
Expand Down Expand Up @@ -104,7 +104,7 @@ RSocketServerFactory rSocketServerFactory(RSocketProperties properties, ReactorR
@ConditionalOnMissingBean
RSocketServerBootstrap rSocketServerBootstrap(RSocketServerFactory rSocketServerFactory,
RSocketMessageHandler rSocketMessageHandler) {
return new RSocketServerBootstrap(rSocketServerFactory, rSocketMessageHandler.serverResponder());
return new RSocketServerBootstrap(rSocketServerFactory, rSocketMessageHandler.responder());
}

@Bean
Expand Down

0 comments on commit e3c87cb

Please sign in to comment.