From 8353021d0ec36f73c9dbbdb4db67a25e8d7fde82 Mon Sep 17 00:00:00 2001 From: yfh Date: Tue, 26 Nov 2024 13:38:31 +0800 Subject: [PATCH] =?UTF-8?q?=E6=89=93=E5=BC=80=E6=8E=A8=E9=80=81=E5=8A=9F?= =?UTF-8?q?=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- node/app/app.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/node/app/app.go b/node/app/app.go index 3614187..b02c884 100644 --- a/node/app/app.go +++ b/node/app/app.go @@ -8,6 +8,7 @@ import ( "et_calc" "et_calc/group" "et_print" + "et_push" "et_sink" "fmt" "gitea.anxinyun.cn/container/common_utils/configLoad" @@ -106,8 +107,8 @@ func addWorkStages(nodeStageManage *stages.StageManager) *stages.StageManager { nodeStageManage.AddStages(stationAnalyzeHandler.GetStage()) // 数据推送 - //publishHandler := et_push.NewPushHandler() - //nodeStageManage.AddStages(publishHandler.GetStage()) + publishHandler := et_push.NewPushHandler() + nodeStageManage.AddStages(publishHandler.GetStage()) return nodeStageManage }