From b0c0e5442da539ce15f0cb034cb53d34361b7edb Mon Sep 17 00:00:00 2001 From: Yuhui Xu Date: Wed, 4 Aug 2021 00:30:38 +0800 Subject: [PATCH] frontend: set lgproxy request timeout to 120s (#31) lgproxy traceroutecan be really slow if dns resolve doesnt work well. --- frontend/lgproxy.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/lgproxy.go b/frontend/lgproxy.go index 8de16cf..a79aed5 100644 --- a/frontend/lgproxy.go +++ b/frontend/lgproxy.go @@ -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"}