From a60d3891ff21168e8c2b6ca69ea9cc0c6459455f Mon Sep 17 00:00:00 2001 From: Andrei Aaron Date: Fri, 2 Feb 2024 16:11:27 +0200 Subject: [PATCH] ci: stabilize ecosystem client tools workflow (#2224) Since the scheduler no longer executes generators in a fixed order, and scrub logic refactoring, the scrub tasks may or may not complete in the expected time. Increase sleep times used to search for tasks results in zot logs. Signed-off-by: Andrei Aaron --- test/blackbox/scrub.bats | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/blackbox/scrub.bats b/test/blackbox/scrub.bats index 697b9b2ff..34d55a359 100644 --- a/test/blackbox/scrub.bats +++ b/test/blackbox/scrub.bats @@ -67,7 +67,7 @@ function teardown() { wait_zot_reachable ${zot_port} # wait for scrub to be done and logs to get populated - run sleep 20s + run sleep 30s run not_affected [ "$status" -eq 0 ] [ $(echo "${lines[0]}" ) = 'true' ] @@ -82,7 +82,7 @@ function teardown() { wait_zot_reachable ${zot_port} # wait for scrub to be done and logs to get populated - run sleep 20s + run sleep 30s run affected [ "$status" -eq 0 ] [ $(echo "${lines[0]}" ) = 'true' ]