From 5317b458117608e0965b2bae09c63a708995d909 Mon Sep 17 00:00:00 2001 From: Ishita Sequeira <46771830+ishitasequeira@users.noreply.github.com> Date: Mon, 30 Oct 2023 17:53:11 -0400 Subject: [PATCH] fix(application-controller): convert defaultDeploymentInformerResyncDuration to reflect 10 seconds (#16163) Signed-off-by: ishitasequeira --- controller/appcontroller.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controller/appcontroller.go b/controller/appcontroller.go index 3b54c13d4eb43a..3582d907e5f5b3 100644 --- a/controller/appcontroller.go +++ b/controller/appcontroller.go @@ -70,7 +70,7 @@ import ( const ( updateOperationStateTimeout = 1 * time.Second - defaultDeploymentInformerResyncDuration = 10 + defaultDeploymentInformerResyncDuration = 10 * time.Second // orphanedIndex contains application which monitor orphaned resources by namespace orphanedIndex = "orphaned" )