Skip to content

Commit

Permalink
utils: fix wrong filename in error message (#8643)
Browse files Browse the repository at this point in the history
  • Loading branch information
helder-moreira authored Feb 19, 2021
1 parent ef8dabc commit c6355fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ func interceptConfigs(rootViper *viper.Viper) (*tmcfg.Config, error) {
rootViper.SetConfigName("config")
rootViper.AddConfigPath(configPath)
if err := rootViper.ReadInConfig(); err != nil {
return nil, fmt.Errorf("failed to read in app.toml: %w", err)
return nil, fmt.Errorf("failed to read in config.toml: %w", err)
}
}

Expand Down

0 comments on commit c6355fd

Please sign in to comment.