From 0e51e7572af47e62107f8c8f25796decadea2423 Mon Sep 17 00:00:00 2001 From: itouakirai <85016486+itouakirai@users.noreply.github.com> Date: Thu, 9 Jan 2025 22:38:43 +0800 Subject: [PATCH] Update runv2.go timeout 20000->0 --- utils/runv2/runv2.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/runv2/runv2.go b/utils/runv2/runv2.go index 1b1e8f2..3d7b8a0 100644 --- a/utils/runv2/runv2.go +++ b/utils/runv2/runv2.go @@ -47,7 +47,7 @@ func (b *TimedResponseBody) Read(p []byte) (int, error) { func Run(adamId string, playlistUrl string, outfile string, Config structs.ConfigSet) error { var err error var optstimeout uint - optstimeout = 20000 + optstimeout = 0 timeout := time.Duration(optstimeout * uint(time.Millisecond)) header := make(http.Header)