diff --git a/utils/config/config.go b/utils/config/config.go index 889094b..d0f930b 100644 --- a/utils/config/config.go +++ b/utils/config/config.go @@ -33,8 +33,6 @@ func DefaultLoad(modeulName string, defCfg interface{}) error { // filepath.Join用于将多个路径组合成一个路径 configFilePath := filepath.Join(filepath.Dir(execPath), "..", "confs", fmt.Sprintf("%s.config.json", modeulName)) - configFilePath = "D:\\Work\\Codes\\workspace\\workspace\\scheduler\\common\\assets\\confs\\middleware.json" - return Load(configFilePath, defCfg) }