From ea284e3ef2af91859e7c8bdaac5c275967118853 Mon Sep 17 00:00:00 2001 From: Christine Dodrill Date: Sun, 17 Feb 2019 08:45:10 -0800 Subject: [PATCH] cmd/site: handle this error --- cmd/site/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/site/main.go b/cmd/site/main.go index c00f22a..6f3b77e 100644 --- a/cmd/site/main.go +++ b/cmd/site/main.go @@ -75,7 +75,7 @@ func main() { } ln.Log(context.Background(), ln.F{"action": "http_listening", "port": port}) - http.ListenAndServe(":"+port, altOnionHandler(s)) + ln.FatalErr(context.Background(), http.ListenAndServe(":"+port, altOnionHandler(s))) } func requestIDMiddleware(next http.Handler) http.Handler {