Process recordings uploaded to s3

This commit is contained in:
2024-07-29 14:48:21 +02:00
parent c0aa615d12
commit b1527ad7b3
4 changed files with 105 additions and 2 deletions

View File

@@ -16,11 +16,17 @@ else:
[
"reflector.pipelines.main_live_pipeline",
"reflector.worker.healthcheck",
"reflector.worker.process",
]
)
# crontab
app.conf.beat_schedule = {}
app.conf.beat_schedule = {
"process_messages": {
"task": "reflector.worker.process.process_messages",
"schedule": 60.0,
}
}
if settings.HEALTHCHECK_URL:
app.conf.beat_schedule["healthcheck_ping"] = {