From 5884f1c90085817b7a59e8d0658e53a2d27267fd Mon Sep 17 00:00:00 2001 From: Blaine Gardner Date: Thu, 11 Jul 2024 11:27:33 -0600 Subject: [PATCH] multus: reset validation tool debounce time to 30 Reset the Multus validation tool debounce time to its intended 30 second value. It was changed to 5 for testing, and the change was accidentally committed. Signed-off-by: Blaine Gardner --- pkg/daemon/multus/validation.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/daemon/multus/validation.go b/pkg/daemon/multus/validation.go index b800da0f55b4..69ab3a2b18da 100644 --- a/pkg/daemon/multus/validation.go +++ b/pkg/daemon/multus/validation.go @@ -85,7 +85,7 @@ type getExpectedNumberOfImagePullPodsState struct { // the length of time to wait for daemonset scheduler to stabilize to a specific number of pods // started. must be lower than the state timeout duration -var podSchedulerDebounceTime = 5 * time.Second // TODO: reset after testing +var podSchedulerDebounceTime = 30 * time.Second func (s *getExpectedNumberOfImagePullPodsState) Run( ctx context.Context, vsm *validationStateMachine,