frontend: set lgproxy request timeout to 120s (#31)

lgproxy traceroutecan be really slow if dns resolve doesnt work well.
This commit is contained in:
Yuhui Xu 2021-08-04 00:30:38 +08:00 committed by GitHub
parent 4e4ce89418
commit b0c0e5442d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -47,7 +47,7 @@ func batchRequest(servers []string, endpoint string, command string) []string {
}
url := "http://" + hostname + ":" + strconv.Itoa(setting.proxyPort) + "/" + url.PathEscape(endpoint) + "?q=" + url.QueryEscape(command)
go func(url string, i int) {
client := http.Client{Timeout: 30 * time.Second}
client := http.Client{Timeout: 120 * time.Second}
response, err := client.Get(url)
if err != nil {
ch <- channelData{i, "request failed: " + err.Error() + "\n"}