From 5841047c38fdd9eb822151e8ce6142da90aa4849 Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Sun, 27 Nov 2022 10:08:41 +0000 Subject: feat(tvix/nar-bridge): increase timeouts In some cases, Nix is not able to stream the NAR file fast enough. Bump the timeouts for now. We might want to get a better understanding in what's happening here long-term, and/or make the timeouts configurable. Change-Id: Ieaa9c8f04bc73c6ce0679a058d07eaf87126634e Reviewed-on: https://cl.tvl.fyi/c/depot/+/9340 Reviewed-by: tazjin Tested-by: BuildkiteCI --- tvix/nar-bridge/pkg/server/server.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tvix') diff --git a/tvix/nar-bridge/pkg/server/server.go b/tvix/nar-bridge/pkg/server/server.go index 083b7f295a..0de38c84df 100644 --- a/tvix/nar-bridge/pkg/server/server.go +++ b/tvix/nar-bridge/pkg/server/server.go @@ -77,9 +77,9 @@ func (s *Server) ListenAndServe(addr string) error { srv := &http.Server{ Addr: addr, Handler: s.handler, - ReadTimeout: 50 * time.Second, - WriteTimeout: 100 * time.Second, - IdleTimeout: 150 * time.Second, + ReadTimeout: 500 * time.Second, + WriteTimeout: 500 * time.Second, + IdleTimeout: 500 * time.Second, } return srv.ListenAndServe() -- cgit 1.4.1