From efbb1f4635149b9363d0e9b6404b32718d7a782e Mon Sep 17 00:00:00 2001 From: Kameron Carr Date: Fri, 24 May 2024 14:21:00 -0700 Subject: [PATCH] Revert Architecture Type key Mistakenly changed in 2e7180d6e2dd1b6b1b3faf15eefb103fa9dbdbf0 --- lisa/sut_orchestrator/azure/features.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisa/sut_orchestrator/azure/features.py b/lisa/sut_orchestrator/azure/features.py index 00104ce5be..1c65c2b77e 100644 --- a/lisa/sut_orchestrator/azure/features.py +++ b/lisa/sut_orchestrator/azure/features.py @@ -3078,7 +3078,7 @@ def create_setting( ) -> Optional[schema.FeatureSettings]: raw_capabilities: Any = kwargs.get("raw_capabilities") return ArchitectureSettings( - arch=raw_capabilities.get("Cpuschema.ArchitectureType", "x64") + arch=raw_capabilities.get("CpuArchitectureType", "x64") ) @classmethod