Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion awscli/customizations/emr/createcluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -844,7 +844,7 @@ def _filter_configurations_in_special_cases(
def _handle_emrfs_parameters(self, cluster, emrfs_args, release_label):
if release_label:
self.validate_no_emrfs_configuration(cluster)
emrfs_configuration = emrfsutils.build_emrfs_confiuration(
emrfs_configuration = emrfsutils.build_emrfs_configuration(
emrfs_args
)

Expand Down
6 changes: 5 additions & 1 deletion awscli/customizations/emr/emrfsutils.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def build_bootstrap_action_configs(region, emrfs_args):
return bootstrap_actions


def build_emrfs_confiuration(emrfs_args):
def build_emrfs_configuration(emrfs_args):
_verify_emrfs_args(emrfs_args)
emrfs_properties = _build_emrfs_properties(emrfs_args)

Expand All @@ -79,6 +79,10 @@ def build_emrfs_confiuration(emrfs_args):
return emrfs_configuration


# Backwards compatibility alias for the typo in the original function name
build_emrfs_confiuration = build_emrfs_configuration


def _verify_emrfs_args(emrfs_args):
# Encryption should have a valid value
if (
Expand Down