multi: add shutdown logs in subservers

This commit adds a simple shutdown to every subserver to assist
debugging.
This commit is contained in:
yyforyongyu
2021-09-02 20:26:00 +08:00
parent 03bce2129b
commit 3204e2d74b
15 changed files with 24 additions and 6 deletions

View File

@ -68,6 +68,7 @@ func (h *HostAnnouncer) Start() error {
// Stop signals the HostAnnouncer for a graceful stop.
func (h *HostAnnouncer) Stop() error {
h.stopOnce.Do(func() {
log.Info("HostAnnouncer shutting down")
close(h.quit)
h.wg.Wait()
})