From c74fd8899f01d46a7e00a08086320566c6a11a2c Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Wed, 2 Oct 2024 10:45:34 -0600 Subject: [PATCH] run: Fix reference to ctx for interactive jobs Fixes: https://tracker.ceph.com/issues/68285 Signed-off-by: Zack Cerza --- teuthology/run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/run.py b/teuthology/run.py index 643955d37..383a74c93 100644 --- a/teuthology/run.py +++ b/teuthology/run.py @@ -402,7 +402,7 @@ def main(args): # FIXME this should become more generic, and the keys should use # '_' uniformly if fake_ctx.config.get('interactive-on-error'): - teuth_config.config.ctx = fake_ctx + teuth_config.ctx = fake_ctx try: run_tasks(tasks=config['tasks'], ctx=fake_ctx)