From 3ec785ac1a9b2759762cd3511ecf7ddb6817ce61 Mon Sep 17 00:00:00 2001 From: ngn Date: Sun, 18 May 2025 15:55:16 +0300 Subject: [PATCH] actually used the timeout specified in TIMEOUT env Signed-off-by: ngn --- src/utils/request.go | 1 + 1 file changed, 1 insertion(+) diff --git a/src/utils/request.go b/src/utils/request.go index 37e8e77..07fbb35 100644 --- a/src/utils/request.go +++ b/src/utils/request.go @@ -166,6 +166,7 @@ func ReqSetup() { } else if to <= 0 { fmt.Println("invalid timeout, timeout should be greater than zero") } else { + fs_timeout = to return }