Skip to content

Commit

Permalink
run weekly instead of daily
Browse files Browse the repository at this point in the history
  • Loading branch information
ohnorobo committed Jun 6, 2023
1 parent 01a5105 commit 393fa21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion schedule_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def run(env: str) -> None:
"""
run_pipeline(env) # run once when starting to catch new errors when deploying

schedule.every().day.at('04:00').do(run_pipeline, env)
schedule.every().monday.at('04:00').do(run_pipeline, env)

while True:
schedule.run_pending()
Expand Down

0 comments on commit 393fa21

Please sign in to comment.