21 lines
641 B
Markdown
21 lines
641 B
Markdown
|
|
# Release Notes v2.2.41
|
||
|
|
|
||
|
|
Dato: 3. marts 2026
|
||
|
|
|
||
|
|
## Fix: Postgres healthcheck støj i logs
|
||
|
|
- Opdateret healthcheck til at bruge korrekt database-navn (`POSTGRES_DB`) i stedet for default database.
|
||
|
|
- Løser gentagne loglinjer af typen: `FATAL: database "bmc_hub" does not exist` på installationer hvor databasen hedder noget andet (fx `hubdb_v2`).
|
||
|
|
|
||
|
|
## Ændrede filer
|
||
|
|
- `docker-compose.prod.yml`
|
||
|
|
- `docker-compose.yml`
|
||
|
|
- `updateto.sh`
|
||
|
|
- `VERSION`
|
||
|
|
|
||
|
|
## Tekniske noter
|
||
|
|
- Healthcheck er ændret fra:
|
||
|
|
- `pg_isready -U <user>`
|
||
|
|
- Til:
|
||
|
|
- `pg_isready -U <user> -d <db>`
|
||
|
|
- `updateto.sh` bruger nu også `-d "$POSTGRES_DB"` i venteløkke for postgres.
|