FIX: CA roots are not correctly being verified in main.go. Left the warning in but removed os.Exit until we can determine a cross-platform method of evaluating certificate trust. (#41)

This commit is contained in:
mosen
2016-10-25 21:59:25 +11:00
committed by GitHub
parent 4742bb7bb3
commit dfb757db8a

View File

@@ -360,7 +360,6 @@ func serve(logger log.Logger, tlsEnabled bool, port, key, certPath string) {
logger.Log("err", "certificate is invalid")
}
}
os.Exit(1)
}
logger.Log("msg", "HTTPs", "addr", port)