Skip to content

Commit f354227

Browse files
committed
fix: Increase ExecutionTimeout to 20m for large clusters
1 parent 027770b commit f354227

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const (
2020
AnnotationTTL = "k8s-ttl-controller.twin.sh/ttl"
2121

2222
MaximumFailedExecutionBeforePanic = 10 // Maximum number of allowed failed executions before panicking
23-
ExecutionTimeout = 10 * time.Minute // Maximum time for each reconciliation before timing out
23+
ExecutionTimeout = 20 * time.Minute // Maximum time for each reconciliation before timing out
2424
ExecutionInterval = 5 * time.Minute // Interval between each reconciliation
2525
ThrottleDuration = 50 * time.Millisecond // Duration to sleep for throttling purposes
2626
)

0 commit comments

Comments
 (0)