Merge pull request #804 from krasi-georgiev/ctr-couldnt-exit-when-containerd-is-down

ctr couldn't exit when the grpc containerd server is not running
This commit is contained in:
Phil Estes 2017-05-04 10:34:48 -04:00 committed by GitHub
commit 433f77d3be

View File

@ -100,7 +100,7 @@ func forwardAllSignals(containers execution.ContainerServiceClient, id string) c
} }
_, err := containers.Kill(gocontext.Background(), killRequest) _, err := containers.Kill(gocontext.Background(), killRequest)
if err != nil { if err != nil {
logrus.WithError(err).Error("grpc event from kill") logrus.Fatalln(err)
} }
} }
}() }()