remove unwanted break (#6338)

Signed-off-by: johncming <johncming@yahoo.com>
This commit is contained in:
johncming 2019-11-19 15:01:03 +08:00 committed by Ganesh Vernekar
parent 9d39fdad0c
commit ad4bc5701e

View file

@ -500,12 +500,10 @@ func main() {
case <-term:
level.Warn(logger).Log("msg", "Received SIGTERM, exiting gracefully...")
reloadReady.Close()
case <-webHandler.Quit():
level.Warn(logger).Log("msg", "Received termination request via web service, exiting gracefully...")
case <-cancel:
reloadReady.Close()
break
}
return nil
},