[#316] cmd/ir: Set default value of path to NeoFS LOCODE database

Make `locode.db.path` to be empty string by default in IR configuration.

Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
This commit is contained in:
Leonard Lyubich 2021-02-10 10:26:27 +03:00 committed by Leonard Lyubich
parent 46d60f3d52
commit c384fbbf4e

View file

@ -108,4 +108,6 @@ func defaultConfiguration(cfg *viper.Viper) {
cfg.SetDefault("audit.por.pool_size", "10")
cfg.SetDefault("settlement.basic_income_rate", 0)
cfg.SetDefault("locode.db.path", "")
}