This looks like a bug:
It's the only method not implemented?
@Override
public Mono<ReactiveSessionInformation> removeSessionInformation(String sessionId) {
return Mono.empty();
}
Describe the bug A clear and concise description of what the bug is.
To Reproduce Steps to reproduce the behavior.
Expected behavior A clear and concise description of what you expected to happen.
Sample
A link to a GitHub repository with a minimal, reproducible sample.
Reports that include a sample will take priority over reports that do not. At times, we may require a sample, so it is good to try and include a sample up front.
Comment From: marcusdacoregio
Hi @dreamstar-enterprises, thanks for the report. Since this class is from Spring Session, the ticket should be opened on its issue tracker.
The reason that the method does nothing is the same reason that org.springframework.session.security.SpringSessionBackedSessionRegistry#removeSessionInformation also does nothing. The sessions are not maintained by the session registry, instead, when using Spring Session, they are maintained by the SessionRepository.