From fd598ee0cf34f91e65dc7ae9c5e7fee0c469d0d4 Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Fri, 18 Mar 2022 16:02:06 -0600 Subject: [PATCH] task.clock: Fix call to filter_out_containers() Signed-off-by: Zack Cerza --- teuthology/task/clock.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/task/clock.py b/teuthology/task/clock.py index a6ea1f91c..982eb8e1b 100644 --- a/teuthology/task/clock.py +++ b/teuthology/task/clock.py @@ -37,7 +37,7 @@ def task(ctx, config): """ log.info('Syncing clocks and checking initial clock skew...') - cluster = filter_out_containers()(ctx.cluster) + cluster = filter_out_containers(ctx.cluster) run.wait( cluster.run( args = [ -- 2.47.3