bihealth / sodar-server

SODAR: System for Omics Data Access and Retrieval
https://github.com/bihealth/sodar-server
MIT License
14 stars 3 forks source link

Disable PostgreSQL warning logging in CI #2006

Open mikkonie opened 2 months ago

mikkonie commented 2 months ago

Due to an issue within the iRODS server, certain actions raise there is no transaction in progress warnings in postgres. These are also visible at the end of each CI run. Not harmful but annoying especially when going through the logs for debugging something.

In docker compose this can removed with command: ["postgres", "-c", "log_min_messages=error"]. Need to figure out a similar syntax in GitHub Actions.

See also bihealth/sodar-docker-compose#17.