Skip to content
This repository was archived by the owner on Aug 11, 2025. It is now read-only.

Commit 6e00ed8

Browse files
authored
reconcile every 10 minutes instead of every minute (#268)
1 parent c101a07 commit 6e00ed8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/orchestrator/updates.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ var (
3333
errInvalidState = errors.New("invalid condition state")
3434
errCompleteEvent = errors.New("unable to complete event")
3535
failedByReconciler = []byte(`{ "msg": "controller failed to process this condition in time" }`)
36-
reconcilerCadence = 1 * time.Minute
36+
reconcilerCadence = 10 * time.Minute
3737
errRetryThis = errors.New("retry this operation")
3838
// Ideally set this to the JS MaxAge value.
3939
// The Discard Policy should be set to Old.

0 commit comments

Comments
 (0)