Skip to content

Commit

Permalink
fix: update deploy timeout to 60 minutes as in few situations it is c…
Browse files Browse the repository at this point in the history
…rossing 30 minutes (#737)

Co-authored-by: Sandeep Bhardwaj <[email protected]>
  • Loading branch information
sravankorumilli and sbchaos authored Feb 10, 2023
1 parent 3e6f584 commit fa5c8f8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/cmd/deploy/deploy.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import (
)

const (
deployTimeout = time.Minute * 30
deployTimeout = time.Minute * 60
pollInterval = time.Second * 15
)

Expand Down
2 changes: 1 addition & 1 deletion client/cmd/job/refresh.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
)

const (
refreshTimeout = time.Minute * 30
refreshTimeout = time.Minute * 60
deployTimeout = time.Minute * 30
pollInterval = time.Second * 15
)
Expand Down

0 comments on commit fa5c8f8

Please sign in to comment.