1
0
Fork 0

fix: remove double call to server Close.

This commit is contained in:
Ludovic Fernandez 2019-12-09 15:14:06 +01:00 committed by Traefiker Bot
parent ddbf4470a1
commit 1a7a3a4233
3 changed files with 5 additions and 9 deletions

View file

@ -69,10 +69,10 @@ Complete documentation is available at https://traefik.io`,
err = cli.Execute(cmdTraefik)
if err != nil {
stdlog.Println(err)
os.Exit(1)
logrus.Exit(1)
}
os.Exit(0)
logrus.Exit(0)
}
func runCmd(staticConfiguration *static.Configuration) error {
@ -156,7 +156,6 @@ func runCmd(staticConfiguration *static.Configuration) error {
svr.Wait()
log.WithoutContext().Info("Shutting down")
logrus.Exit(0)
return nil
}