关闭默认从Code-Create创建游客账号的定时器

This commit is contained in:
2025-03-03 21:17:14 +08:00
parent 377c86e390
commit 52bafa95e3

View File

@@ -66,9 +66,10 @@ public class AccountTask {
} }
/** /**
* 关闭此定时器不再从Code-Create上默认创建AiDA游客
* 将Code-Create上注册的用户添加为AiDA的游客 * 将Code-Create上注册的用户添加为AiDA的游客
*/ */
@Scheduled(cron = "0 */5 * * * *") // Run every 5 minutes // @Scheduled(cron = "0 */5 * * * *") // Run every 5 minutes
public void registerUserToVisitor() { public void registerUserToVisitor() {
accountService.registerUserToVisitor(); accountService.registerUserToVisitor();
} }