Skip to content

Commit fa5c8f8

Browse files
fix: update deploy timeout to 60 minutes as in few situations it is crossing 30 minutes (#737)
Co-authored-by: Sandeep Bhardwaj <sandeep.bhardwaj@gojek.com>
1 parent 3e6f584 commit fa5c8f8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

client/cmd/deploy/deploy.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import (
2828
)
2929

3030
const (
31-
deployTimeout = time.Minute * 30
31+
deployTimeout = time.Minute * 60
3232
pollInterval = time.Second * 15
3333
)
3434

client/cmd/job/refresh.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import (
1919
)
2020

2121
const (
22-
refreshTimeout = time.Minute * 30
22+
refreshTimeout = time.Minute * 60
2323
deployTimeout = time.Minute * 30
2424
pollInterval = time.Second * 15
2525
)

0 commit comments

Comments
 (0)