From 81a5b1b4c8946dfa9cbee298c2f4a263df407b0f Mon Sep 17 00:00:00 2001 From: Ludovic Fernandez Date: Tue, 22 Nov 2022 18:30:05 +0100 Subject: [PATCH] Increase the timeout on plugin download --- pkg/plugins/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/plugins/client.go b/pkg/plugins/client.go index 831337d93..e891da5c4 100644 --- a/pkg/plugins/client.go +++ b/pkg/plugins/client.go @@ -78,7 +78,7 @@ func NewClient(opts ClientOptions) (*Client, error) { } return &Client{ - HTTPClient: &http.Client{Timeout: 5 * time.Second}, + HTTPClient: &http.Client{Timeout: 10 * time.Second}, baseURL: baseURL, archives: archivesPath,