Skip to content

Commit

Permalink
fix: cron expression for canceled trips update scheduler
Browse files Browse the repository at this point in the history
  • Loading branch information
albertkun committed Feb 1, 2024
1 parent cb0836a commit 733b9a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data-loading-service/app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def go_pass_data_scheduler():
except Exception as e:
print('Error updating Go Pass data ' + str(e))

@crython.job(expr='*/15 * * * *')
@crython.job(expr='0 */15 * * * * *')
def canceled_trips_update_scheduler():
try:
update_canceled_trips.run_update()
Expand Down

0 comments on commit 733b9a6

Please sign in to comment.