Skip to content

Commit

Permalink
bools casted to int
Browse files Browse the repository at this point in the history
  • Loading branch information
ranchodeluxe committed Jan 7, 2024
1 parent cb15118 commit 2b88eee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
raise ValueError(f"'S3_BUCKET_OPTIONS_MAP' did not have a key for '{bucket_choice}'. Options are {bucket_options}")

BUCKET_PREFIX = s3_uri
c.Bake.prune = bool(os.environ.get('PRUNE_OPTION'))
c.Bake.prune = bool(int(os.environ.get('PRUNE_OPTION')))
c.Bake.container_image = 'apache/beam_python3.10_sdk:2.52.0'
c.Bake.bakery_class = 'pangeo_forge_runner.bakery.flink.FlinkOperatorBakery'
c.Bake.feedstock_subdir = os.environ.get("FEEDSTOCK_SUBDIR")
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/job-runner.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ on:
prune:
description: 'Only run the first two time steps'
required: true
default: 'False'
default: '0'
parallelism:
description: 'Number of task managers to spin up'
required: true
Expand Down

0 comments on commit 2b88eee

Please sign in to comment.