From 6e00ed87a3c39b782811d2658b75d7dffb60e674 Mon Sep 17 00:00:00 2001 From: Doctor Vince Date: Wed, 18 Sep 2024 10:55:32 -0400 Subject: [PATCH] reconcile every 10 minutes instead of every minute (#268) --- internal/orchestrator/updates.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/orchestrator/updates.go b/internal/orchestrator/updates.go index 3db66217..762ff432 100644 --- a/internal/orchestrator/updates.go +++ b/internal/orchestrator/updates.go @@ -33,7 +33,7 @@ var ( errInvalidState = errors.New("invalid condition state") errCompleteEvent = errors.New("unable to complete event") failedByReconciler = []byte(`{ "msg": "controller failed to process this condition in time" }`) - reconcilerCadence = 1 * time.Minute + reconcilerCadence = 10 * time.Minute errRetryThis = errors.New("retry this operation") // Ideally set this to the JS MaxAge value. // The Discard Policy should be set to Old.