Skip to content

Commit

Permalink
chore: update sync task schedule to 12h
Browse files Browse the repository at this point in the history
  • Loading branch information
daoleno committed Jan 15, 2024
1 parent 5f2bdf8 commit f259336
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bq-syncer/sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ def perform_sync_task():


# Schedule the task to run every 60 minutes
schedule.every(60).minutes.do(perform_sync_task)
schedule.every(12).hours.do(perform_sync_task)

# Run the task immediately on start
perform_sync_task()
Expand Down

0 comments on commit f259336

Please sign in to comment.