Change logging in waitForSignalAndShutdown
This commit is contained in:
parent
c74c4dd8ff
commit
01aa3d9074
@ -406,12 +406,11 @@ func pushSynchronizationHandler(nt bchain.NotificationType) {
|
|||||||
|
|
||||||
func waitForSignalAndShutdown(https *server.HTTPServer, socketio *server.SocketIoServer, chain bchain.BlockChain, timeout time.Duration) {
|
func waitForSignalAndShutdown(https *server.HTTPServer, socketio *server.SocketIoServer, chain bchain.BlockChain, timeout time.Duration) {
|
||||||
sig := <-chanOsSignal
|
sig := <-chanOsSignal
|
||||||
|
glog.Infof("Shutdown: %v", sig)
|
||||||
|
|
||||||
ctx, cancel := context.WithTimeout(context.Background(), timeout)
|
ctx, cancel := context.WithTimeout(context.Background(), timeout)
|
||||||
defer cancel()
|
defer cancel()
|
||||||
|
|
||||||
glog.Infof("Shutdown: %v", sig)
|
|
||||||
|
|
||||||
if https != nil {
|
if https != nil {
|
||||||
if err := https.Shutdown(ctx); err != nil {
|
if err := https.Shutdown(ctx); err != nil {
|
||||||
glog.Error("HttpServer.Shutdown error: ", err)
|
glog.Error("HttpServer.Shutdown error: ", err)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user