pull/330/head
xiaojunnuo 2025-01-04 20:17:08 +08:00
parent e6dd7cd54a
commit 81b322cd60
3 changed files with 3 additions and 3 deletions

View File

@ -238,7 +238,7 @@ function openUpgrade() {
title: "专业版", title: "专业版",
desc: "开源需要您的赞助支持", desc: "开源需要您的赞助支持",
type: "plus", type: "plus",
privilege: ["可加VIP群需求将优先实现", "站点证书监控无限制", "更多通知方式", "更多强大部署插件宝塔、群晖、1Panel等"], privilege: ["可加VIP群需求将优先实现", "站点证书监控无限制", "更多通知方式", "更多强大部署插件宝塔、群晖、1Panel等"],
trial: { trial: {
title: "点击获取7天试用", title: "点击获取7天试用",
click: () => { click: () => {

View File

@ -1,6 +1,6 @@
import { Autoload, Config, Init, Inject, Scope, ScopeEnum } from '@midwayjs/core'; import { Autoload, Config, Init, Inject, Scope, ScopeEnum } from '@midwayjs/core';
import { PipelineService } from '../pipeline/service/pipeline-service.js'; import { PipelineService } from '../pipeline/service/pipeline-service.js';
import { logger, utils } from '@certd/basic'; import { logger } from '@certd/basic';
import { SysSettingsService } from '@certd/lib-server'; import { SysSettingsService } from '@certd/lib-server';
import { SiteInfoService } from '../monitor/index.js'; import { SiteInfoService } from '../monitor/index.js';
import { Cron } from '../cron/cron.js'; import { Cron } from '../cron/cron.js';

View File

@ -25,7 +25,7 @@ export class SiteTester {
} catch (e) { } catch (e) {
tryCount++; tryCount++;
if (tryCount > maxRetryTimes) { if (tryCount > maxRetryTimes) {
logger.error(`测试站点出错,重试${maxRetryTimes}`, e); logger.error(`测试站点出错,重试${maxRetryTimes}`, e.message);
throw e; throw e;
} }
//指数退避 //指数退避