Skip to content

Commit

Permalink
fix flow names
Browse files Browse the repository at this point in the history
  • Loading branch information
jmbhughes committed Dec 3, 2024
1 parent a6b857b commit 57400b7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions punchpipe/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def serve_flows(configuration_path):
level3_PIM_scheduler_deployment = level3_PIM_scheduler_flow.to_deployment(name="level3-PIM-scheduler-deployment",
description="Schedule a Level 3 flow to make PIM.",
tags=["L3", "scheduler"],
cron=config['levels']['L3_PIM'].get("schedule", "* * * * *"),
cron=config['levels']['level3_PIM_process_flow'].get("schedule", "* * * * *"),
parameters={
"pipeline_config_path": configuration_path}

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

f_corona_scheduler_dep = f_corona_scheduler.to_deployment(name="construct_f_corona_background-scheduler-deployment",
description="Schedule an F corona background.",
cron=config['levels']['f_corona'].get("schedule", "* * * * *"),
cron=config['levels']['construct_f_corona_background_process_flow'].get("schedule", "* * * * *"),
tags=["L3", "scheduler"],
parameters={
"pipeline_config_path": configuration_path}
Expand All @@ -134,7 +134,7 @@ def serve_flows(configuration_path):

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

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

level3_PTM_scheduler_deployment = level3_PTM_scheduler_flow.to_deployment(name="level3-PTM-scheduler-deployment",
description="Schedule a Level 3 flow to make PTM.",
cron=config['levels']['L3_PTM'].get("schedule", "* * * * *"),
cron=config['levels']['level3_PTM_process_flow'].get("schedule", "* * * * *"),
tags=["L3", "scheduler"],
parameters={
"pipeline_config_path": configuration_path}
Expand Down

0 comments on commit 57400b7

Please sign in to comment.