fix: panic(nil) on loadConfig if config actually exists
This commit is contained in:
parent
7a6609ae75
commit
5ceafd556a
@ -56,7 +56,10 @@ func initConfig() {
|
|||||||
viper.AutomaticEnv()
|
viper.AutomaticEnv()
|
||||||
|
|
||||||
err := viper.ReadInConfig()
|
err := viper.ReadInConfig()
|
||||||
if _, ok := err.(viper.ConfigFileNotFoundError); !ok {
|
if err == nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if _, ok := err.(viper.ConfigFileNotFoundError); !ok {
|
||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user