Skip to content

Commit

Permalink
change schedules
Browse files Browse the repository at this point in the history
  • Loading branch information
jmbhughes committed Nov 19, 2024
1 parent 7953b46 commit b5c9781
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions punchpipe/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def serve_flows(configuration_path):

construct_f_corona_background_scheduler_deployment = construct_f_corona_background_scheduler_flow.to_deployment(name="construct_f_corona_background-scheduler-deployment",
description="Schedule an F corona background.",
cron="* * * * *",
cron=config['construct_f_corona_background_process_flow'].get("schedule", "* * * * *"),
parameters={
"pipeline_config_path": configuration_path}

Expand All @@ -103,7 +103,7 @@ def serve_flows(configuration_path):

construct_starfield_background_scheduler_deployment = construct_starfield_background_scheduler_flow.to_deployment(name="construct_starfield-scheduler-deployment",
description="Schedule a starfield background.",
cron="* * * * *",
cron=config['construct_starfield_background_process_flow'].get("schedule", "* * * * *"),
parameters={
"pipeline_config_path": configuration_path}

Expand Down

0 comments on commit b5c9781

Please sign in to comment.