From 67ca7aa0018d0b6061e79c8b2fc7c1168ab3d1ba Mon Sep 17 00:00:00 2001 From: zeaslity Date: Tue, 28 Nov 2023 11:47:45 +0800 Subject: [PATCH] [ Agent ] [ App ] - fix mysql init bugs - 5 --- agent-go/executor/AppFunction.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agent-go/executor/AppFunction.go b/agent-go/executor/AppFunction.go index 8be9d49..a35182c 100644 --- a/agent-go/executor/AppFunction.go +++ b/agent-go/executor/AppFunction.go @@ -553,7 +553,7 @@ func (op *AgentOsOperator) loadMysqlInitScript(funcArgs []string) (bool, []strin sortFileNames(jackeyLoveFileList) var jackeyLoveFileAbsolutePath []string for _, jackeyLoveFile := range jackeyLoveFileList { - jackeyLoveFileAbsolutePath = append(jackeyLoveFileAbsolutePath, jackeyLoveLocalPrefix+jackeyLoveFile) + jackeyLoveFileAbsolutePath = append(jackeyLoveFileAbsolutePath, jackeyLoveLocalPrefix+jackeyLoveFolder+string(os.PathSeparator)+jackeyLoveFile) } log.InfoF("[loadMysqlInitScript] - all jackey love files are => %v", jackeyLoveFileAbsolutePath)