From 3ee16a7b2f1a022a3aff9a0f778b5007dcc5df41 Mon Sep 17 00:00:00 2001 From: "James E. Blair" Date: Thu, 12 Aug 2021 14:11:11 -0700 Subject: [PATCH] Fix wait for scheduler to settle in tests The log line that we should wait for has changed in Zuul; this is the new equivalent. Change-Id: I34fc52729fa64bb36c72fe6661f0794620a25092 Depends-On: https://review.opendev.org/c/zuul/zuul/+/804806 --- playbooks/zuul-operator-functional/tasks/wait_services.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playbooks/zuul-operator-functional/tasks/wait_services.yaml b/playbooks/zuul-operator-functional/tasks/wait_services.yaml index 0da89f1..a927f11 100644 --- a/playbooks/zuul-operator-functional/tasks/wait_services.yaml +++ b/playbooks/zuul-operator-functional/tasks/wait_services.yaml @@ -12,7 +12,7 @@ - name: Wait 8 minutes for scheduler to settle command: kubectl logs pod/zuul-scheduler-0 register: _scheduler_log - until: "'Reconfiguration complete' in _scheduler_log.stdout" + until: "'Config priming complete' in _scheduler_log.stdout" delay: 10 retries: 48