Files
cc-ci/tests/matrix-synapse/recipe_meta.py
autonomic-bot 136100f610
All checks were successful
continuous-integration/drone/push Build is passing
feat(canon): M1.3 enroll all 21 used-recipes as data-warm canonicals (§2.B)
WARM_CANONICAL=True added to every recipe in cc-ci-plan/used-recipes.md (20 weekly +
uptime-kuma external). enrolled_recipes() now returns all 21. Test fixtures
(custom-html-*-bad, concurrency, regression) intentionally left unenrolled.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-17 06:35:30 +00:00

21 lines
1.3 KiB
Python

# Per-recipe harness config for matrix-synapse (recipe #4 — DB + media store; the large-volume /
# DB-backed category). Base recipe = synapse `app` + postgres `db` + nginx `web`. server_name is
# DOMAIN (set by abra), so no EXTRA_ENV needed. Synapse + postgres startup is slow -> long timeouts.
HEALTH_PATH = "/_matrix/client/versions" # 200 JSON once synapse is serving the client API
HEALTH_OK = (200,)
DEPLOY_TIMEOUT = 600
HTTP_TIMEOUT = 600
# TIMEOUT=900 overrides the recipe's default 300s abra-deploy convergence timeout — synapse +
# postgres-autoupgrade cold-start frequently exceeds 300s on this host.
# NOTE: we do NOT set ENABLE_REGISTRATION=true here — synapse refuses to start with open
# registration unless `enable_registration_without_verification=true` is ALSO set, which the
# recipe does not expose as an env. The register-and-message test uses the shared-secret admin
# register endpoint via `exec_in_app` (curl localhost from inside the container) — that path
# bypasses the public router and does NOT require ENABLE_REGISTRATION to be true.
EXTRA_ENV = {"TIMEOUT": "900"}
# canon §2.B: enroll as a DATA-WARM canonical (all recipes enrolled — operator 2026-06-17).
# The weekly sweep promotes this recipe's canonical to its latest green RELEASE TAG.
WARM_CANONICAL = True