We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fcf8f88 commit 18c821cCopy full SHA for 18c821c
1 file changed
css-reports/app.py
@@ -123,6 +123,6 @@ async def fetch_customisation_report():
123
# from waitress import serve
124
125
scheduler = BackgroundScheduler()
126
- scheduler.add_job(asyncio.run(refresh_persistent_cookies()), trigger="interval", minutes=5)
+ scheduler.add_job(func=lambda: asyncio.run(refresh_persistent_cookies()), trigger="interval", minutes=5)
127
scheduler.start()
128
app.run(host="0.0.0.0", port=8000, debug=True)
0 commit comments