From b9cfd1f6e6d3ccb0274fc08348984cad2f13e893 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=96mer=20Faruk=20IRMAK?= Date: Mon, 19 Feb 2024 21:09:11 +0300 Subject: [PATCH] Relax HTTP timeouts --- node/http.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/node/http.go b/node/http.go index c0a8f3acbe..84f3d99c48 100644 --- a/node/http.go +++ b/node/http.go @@ -57,8 +57,6 @@ func makeHTTPService(host string, port uint16, handler http.Handler) *httpServic Addr: net.JoinHostPort(host, portStr), Handler: handler, ReadHeaderTimeout: 30 * time.Second, - IdleTimeout: 30 * time.Second, - ReadTimeout: time.Minute, }, } }