From b3fd17045a8b24a6dcdebebbfd39362b09cf93a0 Mon Sep 17 00:00:00 2001 From: Tobie Morgan Hitchcock Date: Sat, 28 Mar 2020 09:59:51 +0000 Subject: [PATCH] Increase connection read timeout --- web/web.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/web.go b/web/web.go index 3465009c..ce8bf0a8 100644 --- a/web/web.go +++ b/web/web.go @@ -31,7 +31,7 @@ func Setup(opts *cnf.Options) (err error) { routes(s) s.SetName("web") - s.SetReadTimeout("15s") + s.SetReadTimeout("30s") s.SetWriteTimeout("60s") s.SetIdleTimeout("650s") s.SetHTTPErrorHandler(errors)