Skip to content

Commit

Permalink
bug fix make_config
Browse files Browse the repository at this point in the history
  • Loading branch information
Ian-Nara committed Sep 12, 2024
1 parent fdd45d5 commit 37ffc5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/aws/make_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 37ffc5d

Please sign in to comment.