fix(es): implement setTimeoutLogoutLog in ShiroRealmConfig (no-op) to satisfy SystemRealm interface

This commit is contained in:
openclaw
2026-02-11 17:46:48 +08:00
parent cf824d6732
commit 0f8198dbbe

View File

@@ -75,3 +75,12 @@ public class ShiroRealmConfig implements SystemRealm {
}
}
/**
* 超时登出时记录(实现接口方法,默认不做处理)
* @param userId 用户 id
*/
@Override
public void setTimeoutLogoutLog(String userId) {
// no-op: es 模块无需特殊处理;如果需要记录可在此实现
}