Skip to content
This repository has been archived by the owner on Oct 9, 2023. It is now read-only.

Commit

Permalink
Update config.go
Browse files Browse the repository at this point in the history
Set the default values to 0

Signed-off-by: LN <[email protected]>
  • Loading branch information
Ln11211 committed Oct 11, 2022
1 parent a9b831b commit d43df61
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkg/controller/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,9 @@ var (
},
NodeConfig: NodeConfig{
DefaultDeadlines: DefaultDeadlines{
DefaultNodeExecutionDeadline: config.Duration{Duration: time.Hour * 48},
DefaultNodeActiveDeadline: config.Duration{Duration: time.Hour * 48},
DefaultWorkflowActiveDeadline: config.Duration{Duration: time.Hour * 72},
DefaultNodeExecutionDeadline: config.Duration{Duration: time.Hour * 0},
DefaultNodeActiveDeadline: config.Duration{Duration: time.Hour * 0},
DefaultWorkflowActiveDeadline: config.Duration{Duration: time.Hour * 0},
},
MaxNodeRetriesOnSystemFailures: 3,
InterruptibleFailureThreshold: 1,
Expand Down

0 comments on commit d43df61

Please sign in to comment.