[#1770] node: Reread config files on SIGHUP

Signed-off-by: Pavel Karpy <carpawell@nspcc.ru>
remotes/fyrchik/neofs-adm-fix-commands
Pavel Karpy 2022-09-30 16:33:30 +03:00 committed by fyrchik
parent 6fc3268ebf
commit ab3ef7110e
2 changed files with 22 additions and 1 deletions

View File

@ -154,6 +154,11 @@ func (a *applicationConfiguration) readConfig(c *config.Config) error {
if a._read {
// clear if it is rereading
*a = applicationConfiguration{}
err := c.Reload()
if err != nil {
return err
}
} else {
// update the status
a._read = true

View File

@ -17,6 +17,8 @@ import (
type Config struct {
v *viper.Viper
opts opts
defaultPath []string
path []string
}
@ -53,6 +55,20 @@ func New(_ Prm, opts ...Option) *Config {
}
return &Config{
v: v,
v: v,
opts: *o,
}
}
// Reload reads configuration path if any was provided
// to the New. Returns any
func (x *Config) Reload() error {
if x.opts.path != "" {
err := x.v.ReadInConfig()
if err != nil {
return fmt.Errorf("rereading configuration file: %w", err)
}
}
return nil
}