fix: Only update address every 24 hrs and increase the receiveWindow
All checks were successful
Build Docker / Build Image (push) Successful in 50s

This commit is contained in:
2024-07-23 10:03:30 +10:00
parent 9604f08c4e
commit 4e8ca03aed
2 changed files with 112 additions and 92 deletions

View File

@@ -27,7 +27,7 @@ class GunicornApp(BaseApplication):
if __name__ == '__main__':
# Every hour
scheduler = BackgroundScheduler()
scheduler.add_job(main.update_address, 'cron', hour='*')
scheduler.add_job(main.update_address, 'cron', hour='0')
scheduler.start()