Skip to content

Commit

Permalink
Remove non-existent class from RSocket reference docs
Browse files Browse the repository at this point in the history
Closes gh-9949
  • Loading branch information
eleftherias committed Jun 18, 2021
1 parent cb4bb46 commit 895ef6c
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 895ef6c

Please sign in to comment.