提交 6fbaa7db 编写于 作者: S Stephane Maldini

compile time issue

上级 09fdc8a3
......@@ -110,7 +110,7 @@ public class DefaultWebSessionManager implements WebSessionManager {
protected Mono<WebSession> validateSession(ServerWebExchange exchange, WebSession session) {
if (session.isExpired()) {
this.sessionIdResolver.setSessionId(exchange, "");
return this.sessionStore.removeSession(session.getId()).then(Mono::empty);
return this.sessionStore.removeSession(session.getId()).cast(WebSession.class);
}
else {
return Mono.just(session);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册