From baa6e90be7b20050fe25dfc74c0c70653601d00e Mon Sep 17 00:00:00 2001 From: zhangxinhui02 Date: Wed, 24 Dec 2025 03:39:58 +0800 Subject: [PATCH] =?UTF-8?q?fix(helm=20chart):=20=E5=88=9D=E5=A7=8B?= =?UTF-8?q?=E5=8C=96=E4=BB=BB=E5=8A=A1=E6=97=A5=E5=BF=97=E9=94=99=E8=AF=AF?= =?UTF-8?q?=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- helm-chart/preprocessor/preprocessor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helm-chart/preprocessor/preprocessor.py b/helm-chart/preprocessor/preprocessor.py index 3600e0da..e8fe5b11 100644 --- a/helm-chart/preprocessor/preprocessor.py +++ b/helm-chart/preprocessor/preprocessor.py @@ -141,7 +141,7 @@ def write_config_files(): _f.write(config_str) log(func_name, '\t`.env` of core wrote.') if config_core_bot_b64: - log(func_name, '\tWriting `bot_config.toml` of core not found. Creating...') + log(func_name, '\tWriting `bot_config.toml` of core...') config_str = base64.b64decode(config_core_bot_b64).decode("utf-8") with open('/app/config/core/bot_config.toml', 'w', encoding='utf-8') as _f: _f.write(config_str)