From: Zack Cerza Date: Wed, 2 Oct 2024 16:45:34 +0000 (-0600) Subject: run: Fix reference to ctx for interactive jobs X-Git-Tag: 1.2.2~55^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F2007%2Fhead;p=teuthology.git run: Fix reference to ctx for interactive jobs Fixes: https://tracker.ceph.com/issues/68285 Signed-off-by: Zack Cerza --- 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)