Skip to content

Commit

Permalink
Remove non-existent class from RSocket reference docs
Browse files Browse the repository at this point in the history
  • Loading branch information
eleftherias authored and Ayush Kohli committed Aug 25, 2021
1 parent 690b4ce commit 479da07
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions docs/manual/src/docs/asciidoc/_includes/reactive/rsocket.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,8 @@ In a Spring Boot application this is done automatically using `RSocketSecurityAu
[source,java]
----
@Bean
ServerRSocketFactoryProcessor springSecurityRSocketSecurity(
SecuritySocketAcceptorInterceptor interceptor) {
return builder -> builder.addSocketAcceptorPlugin(interceptor);
RSocketServerCustomizer springSecurityRSocketSecurity(SecuritySocketAcceptorInterceptor interceptor) {
return (server) -> server.interceptors((registry) -> registry.forSocketAcceptor(interceptor));
}
----

Expand Down

0 comments on commit 479da07

Please sign in to comment.