feat(tenant-service): SystemUpdateService 新增 bugcollect-service

OTHER_SERVICES 和 ALLOWED_LOG_SERVICES 添加 bugcollect-service,
一键更新和日志查看支持 Bug 收集服务。

Co-Authored-By: Claude <noreply@anthropic.com>
这个提交包含在:
XuqmGroup 2026-06-18 21:21:28 +08:00
父节点 7f2a55969c
当前提交 58f6135cbe

查看文件

@ -46,7 +46,7 @@ public class SystemUpdateService {
// nginx 最后重启确保它能获取到其他服务修复后的配置
private static final List<String> OTHER_SERVICES = List.of(
"file-service", "tenant-web", "im-service", "push-service", "update-service", "license-service", "nginx"
"file-service", "tenant-web", "im-service", "push-service", "update-service", "license-service", "bugcollect-service", "nginx"
);
// 健康检查配置新容器需在此时间内保持 running 状态才视为健康
@ -56,7 +56,7 @@ public class SystemUpdateService {
private static final Set<String> ALLOWED_LOG_SERVICES = Set.of(
"tenant-service", "file-service", "im-service", "push-service",
"update-service", "license-service", "nginx", "tenant-web"
"update-service", "license-service", "bugcollect-service", "nginx", "tenant-web"
);
@Value("${PRIVATE_DEPLOY_ROOT:/opt/xuqm-private}")