Skip to content

Commit

Permalink
fix: increase noActivityTimeout from 1.5 to 4min
Browse files Browse the repository at this point in the history
Signed-off-by: Ilya Lesikov <[email protected]>
  • Loading branch information
ilya-lesikov committed Jul 18, 2022
1 parent 48350f7 commit 00b49d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/trackers/rollout/multitrack/generic/spec.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ func (s *Spec) Init() error {

if s.NoActivityTimeout == nil {
s.NoActivityTimeout = new(time.Duration)
*s.NoActivityTimeout = time.Duration(90 * time.Second)
*s.NoActivityTimeout = time.Duration(4 * time.Minute)
}

if s.TrackTerminationMode == "" {
Expand Down

0 comments on commit 00b49d8

Please sign in to comment.