From dfb757db8a4bd0092b6be9ef60f17f280a11df80 Mon Sep 17 00:00:00 2001 From: mosen Date: Tue, 25 Oct 2016 21:59:25 +1100 Subject: [PATCH] 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) --- main.go | 1 - 1 file changed, 1 deletion(-) diff --git a/main.go b/main.go index 5d25e406..fa01ec5f 100644 --- a/main.go +++ b/main.go @@ -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)