Skip to content

Commit

Permalink
Removing ci workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
wilmer05 committed Jul 18, 2023
1 parent 8356392 commit e88f9e7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@ jobs:
DOCKER_REGISTRY: ""
steps:
- uses: actions/checkout@v2
- name: Install docker-compose
run: sudo apt-get update && sudo apt-get install -y docker-compose=1.25.0-1
- uses: actions/setup-python@v2
with:
python-version: 3.7
Expand Down
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.load(document)
parsed_pod_template = yaml.safe_load(document)
with open(pod_template_path, "w") as f:
yaml.dump(parsed_pod_template, f)

Expand Down

0 comments on commit e88f9e7

Please sign in to comment.