fix: json parse error in docker #600 #601

This commit is contained in:
zhayujie
2023-03-26 02:31:38 +08:00
parent 5aedce647f
commit e226c93eeb
2 changed files with 2 additions and 2 deletions

View File

@@ -98,7 +98,7 @@ def load_config():
config_path = "./config-template.json"
config_str = read_file(config_path)
logger.info("[INIT] config str: {}".format(config_str))
logger.debug("[INIT] config str: {}".format(config_str))
# 将json字符串反序列化为dict类型
config = Config(json.loads(config_str))