mirror of https://github.com/status-im/consul.git
agent: don't replace config on SIGHUP if parsing fails
This commit is contained in:
parent
26d15e6f07
commit
5226e29a69
|
@ -790,7 +790,9 @@ WAIT:
|
|||
|
||||
// Check if this is a SIGHUP
|
||||
if sig == syscall.SIGHUP {
|
||||
config = c.handleReload(config)
|
||||
if conf := c.handleReload(config); conf != nil {
|
||||
config = conf
|
||||
}
|
||||
goto WAIT
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue