poprawki w zadaniach zaplanowanych

This commit is contained in:
Mateusz Gruszczyński 2025-03-04 14:00:40 +01:00
parent 982a5049d7
commit 8023794451
2 changed files with 3 additions and 1 deletions

View File

@ -4,4 +4,5 @@ Flask-SQLAlchemy
paramiko
apscheduler
gunicorn
waitress
waitress
pytz

View File

@ -7,6 +7,7 @@ if __name__ == "__main__":
db.create_all()
for job in scheduler.get_jobs():
job.modify(next_run_time=datetime.now())
print(job)
if not scheduler.running:
scheduler.start()
serve(app, listen="*:5580", threads=4, ident="")