summaryrefslogtreecommitdiffstats
path: root/utils/config.go
diff options
context:
space:
mode:
Diffstat (limited to 'utils/config.go')
-rw-r--r--utils/config.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/utils/config.go b/utils/config.go
index 8611be975..7b7a111d6 100644
--- a/utils/config.go
+++ b/utils/config.go
@@ -285,7 +285,7 @@ func InitAndLoadConfig(filename string) error {
// LoadConfig will try to search around for the corresponding config file.
// It will search /tmp/fileName then attempt ./config/fileName,
// then ../config/fileName and last it will look at fileName
-func LoadConfig(fileName string) {
+func LoadConfig(fileName string) *model.Config {
cfgMutex.Lock()
defer cfgMutex.Unlock()
@@ -394,6 +394,8 @@ func LoadConfig(fileName string) {
for _, listener := range cfgListeners {
listener(&oldConfig, &config)
}
+
+ return &config
}
func RegenerateClientConfig() {