mirror of
https://gitee.com/dolphinscheduler/DolphinScheduler.git
synced 2024-12-04 21:28:00 +08:00
fix SessionService signOut method exception bug
This commit is contained in:
parent
4660152f38
commit
5949c8d6fb
@ -139,7 +139,6 @@ public class SessionService extends BaseService{
|
||||
* @param loginUser login user
|
||||
*/
|
||||
public void signOut(String ip, User loginUser) {
|
||||
try {
|
||||
/**
|
||||
* query session by user id and ip
|
||||
*/
|
||||
@ -147,8 +146,5 @@ public class SessionService extends BaseService{
|
||||
|
||||
//delete session
|
||||
sessionMapper.deleteById(session.getId());
|
||||
}catch (Exception e){
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user