From 80237944510367a9136984d81c783751f9fef75c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20Gruszczy=C5=84ski?= Date: Tue, 4 Mar 2025 14:00:40 +0100 Subject: [PATCH] poprawki w zadaniach zaplanowanych --- requirements.txt | 3 ++- run_waitress.py | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index cba6f7e..4cc7be4 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,4 +4,5 @@ Flask-SQLAlchemy paramiko apscheduler gunicorn -waitress \ No newline at end of file +waitress +pytz \ No newline at end of file diff --git a/run_waitress.py b/run_waitress.py index 0641b9d..0ee98e4 100644 --- a/run_waitress.py +++ b/run_waitress.py @@ -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="")