forked from TrueCloudLab/frostfs-node
[#1770] node: Reread config files on SIGHUP
Signed-off-by: Pavel Karpy <carpawell@nspcc.ru>
This commit is contained in:
parent
6fc3268ebf
commit
ab3ef7110e
2 changed files with 22 additions and 1 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue