From 45e5976ef7d8f79df166bdc9e1e572bcb60e07e1 Mon Sep 17 00:00:00 2001 From: d-g-town <66391417+d-g-town@users.noreply.github.com> Date: Mon, 20 May 2024 20:56:09 -0400 Subject: [PATCH] increase default timeout on CLI (#4664) --- api/client/api.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/client/api.go b/api/client/api.go index 485bd7e3b1..bb0d61fa14 100644 --- a/api/client/api.go +++ b/api/client/api.go @@ -53,7 +53,7 @@ func NewClientWithConfig(ctx context.Context, input NewClientInput) (Client, err client := Client{ BaseURL: input.BaseURL, HTTPClient: &http.Client{ - Timeout: time.Minute, + Timeout: 60 * time.Minute, }, } if cfToken := os.Getenv("PORTER_CF_ACCESS_TOKEN"); cfToken != "" {