agent: don't replace config on SIGHUP if parsing fails
This commit is contained in:
parent
015c39baf5
commit
359abdb9a8
|
@ -790,7 +790,9 @@ WAIT:
|
||||||
|
|
||||||
// Check if this is a SIGHUP
|
// Check if this is a SIGHUP
|
||||||
if sig == syscall.SIGHUP {
|
if sig == syscall.SIGHUP {
|
||||||
config = c.handleReload(config)
|
if conf := c.handleReload(config); conf != nil {
|
||||||
|
config = conf
|
||||||
|
}
|
||||||
goto WAIT
|
goto WAIT
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue