From 67575c17bc351409dd265b4ec3568b34ca64bbeb Mon Sep 17 00:00:00 2001 From: huang <1724659546@qq.com> Date: Wed, 29 Oct 2025 19:15:52 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AEbug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- internal/core/data_initializer.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/core/data_initializer.go b/internal/core/data_initializer.go index 6be1ae0..cbca13a 100644 --- a/internal/core/data_initializer.go +++ b/internal/core/data_initializer.go @@ -83,7 +83,7 @@ func (app *Application) getPredefinedSystemPlans() []models.Plan { cronExpression := fmt.Sprintf("*/%d * * * *", interval) timedCollectionPlan := models.Plan{ Name: PlanNameTimedFullDataCollection, - Description: fmt.Sprintf("这是一个系统预定义的计划, 每 %d 秒自动触发一次全量数据采集。", app.Config.Collection.Interval), + Description: fmt.Sprintf("这是一个系统预定义的计划, 每 %d 分钟自动触发一次全量数据采集。", app.Config.Collection.Interval), PlanType: models.PlanTypeSystem, ExecutionType: models.PlanExecutionTypeAutomatic, CronExpression: cronExpression,