From 53495aa97d902b81124aae08cc08290c57ceef5f Mon Sep 17 00:00:00 2001 From: abuabraham-ttd Date: Thu, 19 Dec 2024 15:34:48 -0800 Subject: [PATCH] Fix code --- scripts/aws/ec2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/aws/ec2.py b/scripts/aws/ec2.py index 424d8f673..1b4078c58 100644 --- a/scripts/aws/ec2.py +++ b/scripts/aws/ec2.py @@ -203,7 +203,7 @@ def __run_nitro_enclave(self): "--enclave-cid", "42", "--enclave-name", "uid2operator" ] - if self.configs('debug_mode', True): #E2E override + if self.configs.get('debug_mode', True): #E2E override print("Running in debug_mode") command += ["--debug-mode", "--attach-console"] self.run_command(command)