frontend: set timeout longer for lgproxy requests (#30)

This commit is contained in:
Yuhui Xu 2021-08-03 11:46:05 +08:00 committed by GitHub
parent 234aadadd9
commit 4e4ce89418
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: 5 * time.Second}
client := http.Client{Timeout: 30 * time.Second}
response, err := client.Get(url)
if err != nil {
ch <- channelData{i, "request failed: " + err.Error() + "\n"}