Skip to content

Commit

Permalink
increase default timeout on CLI (#4664)
Browse files Browse the repository at this point in the history
  • Loading branch information
d-g-town authored May 21, 2024
1 parent 1aff0a9 commit 45e5976
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/client/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 != "" {
Expand Down

0 comments on commit 45e5976

Please sign in to comment.