Skip to content

Commit

Permalink
Merge pull request #470 from LACMTA:2023-api-optimization
Browse files Browse the repository at this point in the history
fix: cron expression for canceled trips update scheduler
  • Loading branch information
albertkun authored Feb 1, 2024
2 parents 561cdaa + 733b9a6 commit 5a8dd7a
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 5a8dd7a

Please sign in to comment.