Harden worker queue and restore drill defaults
Dependency Audit / dependency-audit (push) Successful in 2m23s
Deployment Installer / deployment-installer (push) Successful in 6s
Security Audit / security-audit (push) Successful in 10m22s

This commit is contained in:
2026-07-31 22:48:06 +02:00
parent efd734fad2
commit 3c658fa32d
3 changed files with 30 additions and 5 deletions
+3 -3
View File
@@ -172,7 +172,7 @@ def reconcile_runtime_environment(
"ENABLED_MODULES": ",".join(spec.enabled_modules),
"CELERY_ENABLED": "true" if redis.mode != "disabled" else "false",
"CELERY_QUEUES": (
"send_email,append_sent,notifications,calendar,dataflow,workflow,events,default"
"send_email,append_sent,notifications,mail,calendar,dataflow,workflow,postbox,events,idm,default"
),
"CORS_ORIGINS": spec.public_url,
"GOVOPLAN_TRUSTED_HOSTS": public.hostname or "",
@@ -465,8 +465,8 @@ def render_compose(spec: InstallationSpec) -> dict[str, object]:
"worker",
"--queues",
(
"send_email,append_sent,notifications,calendar,"
"dataflow,events,default"
"send_email,append_sent,notifications,mail,calendar,"
"dataflow,workflow,postbox,events,idm,default"
),
"--loglevel",
"INFO",