|
@@ -82,7 +82,7 @@ public class SessionUtils {
|
|
.flatMap(webSession -> {
|
|
.flatMap(webSession -> {
|
|
String userId = webSession.getAttribute(USER_ID);
|
|
String userId = webSession.getAttribute(USER_ID);
|
|
if (StringUtils.isBlank(userId)) {
|
|
if (StringUtils.isBlank(userId)) {
|
|
- return Mono.error(new SessionNoUserException());
|
|
|
|
|
|
+ return Mono.error(new SessionNoUserException(webSession));
|
|
}
|
|
}
|
|
return Mono.just(userId);
|
|
return Mono.just(userId);
|
|
});
|
|
});
|