Skip to content

Commit 45e5976

Browse files
authored
increase default timeout on CLI (#4664)
1 parent 1aff0a9 commit 45e5976

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

api/client/api.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ func NewClientWithConfig(ctx context.Context, input NewClientInput) (Client, err
5353
client := Client{
5454
BaseURL: input.BaseURL,
5555
HTTPClient: &http.Client{
56-
Timeout: time.Minute,
56+
Timeout: 60 * time.Minute,
5757
},
5858
}
5959
if cfToken := os.Getenv("PORTER_CF_ACCESS_TOKEN"); cfToken != "" {

0 commit comments

Comments
 (0)