feat: rescan_existing_tournaments — detect new players in cached tournaments every 2h
All checks were successful
CI/CD Pipeline / build-and-deploy (push) Successful in 6s

This commit is contained in:
vrubel 2026-06-20 22:09:48 +00:00
parent 07b016bff9
commit d18c5016ce
2 changed files with 75 additions and 0 deletions

View file

@ -721,6 +721,8 @@ def main():
tracker.check_all_subscriptions, interval=300, first=10)
app.job_queue.run_repeating(
tracker.rescan_new_tournaments, interval=3600, first=60)
app.job_queue.run_repeating(
tracker.rescan_existing_tournaments, interval=7200, first=300)
app.job_queue.run_repeating(
tracker.warmup_cache, interval=21600, first=10)