fix: avoid recursive PostGIS startup ownership rewrite
GeoIntel release gates / Compile, test, contracts and builds (push) Canceled after 0s
GeoIntel release gates / Python and npm vulnerability policy (push) Canceled after 0s
GeoIntel release gates / GIS image, SBOM and container scan (push) Canceled after 0s

This commit is contained in:
Codex
2026-07-22 03:58:56 +02:00
parent ab01c93d49
commit 20da1d3dd4
4 changed files with 12 additions and 1 deletions
@@ -54,6 +54,8 @@ def test_release_waits_for_large_postgis_volume_recovery() -> None:
assert "for attempt in $(seq 1 480)" in release_script
assert "for attempt in $(seq 1 450)" in start_script
assert "PostGIS did not become ready within 15 minutes." in start_script
assert 'chown postgres:postgres "$PGDATA"' in start_script
assert 'chown -R postgres:postgres "$PGDATA"' not in start_script
def test_runtime_configuration_is_validated_before_container_replacement() -> None: