less aggressive periodic processing

This commit is contained in:
burnettk 2022-09-22 09:18:01 -04:00
parent 4bcc72c9e4
commit 3be07c581b

View File

@ -54,7 +54,7 @@ def start_scheduler(app: flask.app.Flask) -> None:
scheduler.add_job(
BackgroundProcessingService(app).run,
"interval",
seconds=5,
seconds=30,
)
scheduler.start()