Skip to content

Commit

Permalink
Fixing spark load
Browse files Browse the repository at this point in the history
  • Loading branch information
wilmer05 committed Jul 18, 2023
1 parent 6bf359c commit 8356392
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion paasta_tools/cli/cmds/spark_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -1203,7 +1203,7 @@ def paasta_spark_run(args):
document = POD_TEMPLATE.format(
spark_pod_label=limit_size_with_hash(f"exec-{app_base_name}"),
)
parsed_pod_template = yaml.safe(document)
parsed_pod_template = yaml.load(document)
with open(pod_template_path, "w") as f:
yaml.dump(parsed_pod_template, f)

Expand Down

0 comments on commit 8356392

Please sign in to comment.