From 4e4ce8941883d28c0f0de37997fb0507845d1ef0 Mon Sep 17 00:00:00 2001 From: Yuhui Xu Date: Tue, 3 Aug 2021 11:46:05 +0800 Subject: [PATCH] frontend: set timeout longer for lgproxy requests (#30) --- frontend/lgproxy.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/lgproxy.go b/frontend/lgproxy.go index d5f8906..8de16cf 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: 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"}