Fix log spam (Already shutting down...)

This commit is contained in:
Jonathan Moody 2022-10-27 10:51:34 -04:00
parent cd7f20a461
commit 3bdad6ccf8

View file

@ -49,10 +49,6 @@ func interruptListener() <-chan struct{} {
case sig := <-interruptChannel:
log.Infof("Received signal (%s). Already "+
"shutting down...", sig)
case <-shutdownRequestChannel:
log.Info("Shutdown requested. Already " +
"shutting down...")
}
}
}()