From 37ffc5d85b30554f2050494f7ca704329f8572bb Mon Sep 17 00:00:00 2001 From: "ian.nara" Date: Thu, 12 Sep 2024 12:55:00 -0600 Subject: [PATCH] bug fix make_config --- scripts/aws/make_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/aws/make_config.py b/scripts/aws/make_config.py index 15a51156f..5777dce61 100644 --- a/scripts/aws/make_config.py +++ b/scripts/aws/make_config.py @@ -46,7 +46,7 @@ def apply_override(config, overrides, key, type): apply_override(config, overrides, 'operator_type', str) -if config['operator_type'] == 'public': +if 'operator_type' in config and config['operator_type'] == 'public': config.update(overrides) else: # allowed overrides