agent: don't replace config on SIGHUP if parsing fails

pull/991/head
Ryan Uber 10 years ago
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…
Cancel
Save