From 31054fda221ab2aa89ad2b7f4d7fdf3102086c99 Mon Sep 17 00:00:00 2001 From: hys Date: Fri, 8 Nov 2024 19:29:45 +0800 Subject: [PATCH] fix: change redis conf path --- pkg/controller/utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/controller/utils.go b/pkg/controller/utils.go index cf344fa..16c9b2c 100644 --- a/pkg/controller/utils.go +++ b/pkg/controller/utils.go @@ -58,7 +58,7 @@ func ToJSON(v any) string { } func getRedisIpAndPassword() (ip string, pwd string, err error) { - file, err := os.ReadFile("/terminus/data/redis/etc/redis.conf") + file, err := os.ReadFile("/olares/data/redis/etc/redis.conf") if err != nil { return }