From 87605d3f4f66185d00827db76e15adfaf4870ffc Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Mon, 12 Jun 2023 15:37:56 -0600 Subject: [PATCH] provision: Avoid a possible AttributeError Signed-off-by: Zack Cerza --- teuthology/provision/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/provision/__init__.py b/teuthology/provision/__init__.py index 2e9ba23ff..d60d8acdb 100644 --- a/teuthology/provision/__init__.py +++ b/teuthology/provision/__init__.py @@ -50,7 +50,7 @@ def reimage(ctx, machine_name, machine_type): raise finally: teuthology.exporter.NodeReimagingResults.record( - ctx.config.get("machine_type"), + machine_type, status, ) return result -- 2.47.3