Remove wrong timeout for http source

This commit is contained in:
Alex X
2025-11-20 20:03:34 +03:00
parent aa0ece2d1e
commit 248fc7a11a
+1 -5
View File
@@ -8,7 +8,6 @@ import (
"net"
"net/http"
"strings"
"time"
"github.com/AlexxIT/go2rtc/pkg/core"
)
@@ -69,10 +68,7 @@ func Do(req *http.Request) (*http.Response, error) {
return tlsConn, err
}
client = &http.Client{
Timeout: time.Second * 5000,
Transport: transport,
}
client = &http.Client{Transport: transport}
}
user := req.URL.User