From f9a1a4dd6f154c08f308431b821cc23e5dac8942 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Sun, 27 Oct 2024 11:34:16 +0200 Subject: fix timeouts --- cmd/gos/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cmd') diff --git a/cmd/gos/main.go b/cmd/gos/main.go index 81f747a..de41866 100644 --- a/cmd/gos/main.go +++ b/cmd/gos/main.go @@ -74,7 +74,7 @@ func main() { return } - ctx, cancel := context.WithTimeout(context.Background(), time.Duration(1*time.Minute)) + ctx, cancel := context.WithCancel(context.Background()) defer cancel() if err := internal.Run(ctx, args); err != nil { -- cgit v1.2.3