From 96556265b96b13452f7b7f6fbfc0ae01a2eb9d82 Mon Sep 17 00:00:00 2001 From: Ronen Lubin <63970571+ronenlu@users.noreply.github.com> Date: Mon, 6 Jan 2025 12:02:37 +0200 Subject: [PATCH] atlasaction/cloud: increase cloud client timeout to 60s (#297) --- atlasaction/cloud/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/atlasaction/cloud/client.go b/atlasaction/cloud/client.go index 165a9205..900b65fe 100644 --- a/atlasaction/cloud/client.go +++ b/atlasaction/cloud/client.go @@ -40,7 +40,7 @@ func newClient(endpoint, token, version, cliVersion string) *Client { endpoint = cloudURL } client := retryablehttp.NewClient() - client.HTTPClient.Timeout = time.Second * 30 + client.HTTPClient.Timeout = time.Second * 60 client.HTTPClient.Transport = &roundTripper{ token: token, version: version,