daml/ci/postgresql.conf
Samir Talwar 89369b3bb9
CI: Increase the PostgreSQL connections from 100 to 200. (#6647)
We saw a flake recently where PostgreSQL stopped accepting connections
during a CI run, leading the build to fail. This increases the number of
connections to 200 from the default of 100, hopefully mitigating issues
such as this one.

CHANGELOG_BEGIN
CHANGELOG_END
2020-07-08 10:49:11 +00:00

10 lines
251 B
Plaintext

listen_addresses = '${POSTGRESQL_HOST}'
port = ${POSTGRESQL_PORT}
max_connections = 200
unix_socket_directories = '${POSTGRESQL_ROOT_DIR}'
fsync = off
synchronous_commit = off
full_page_writes = off
log_min_duration_statement = 0
log_connections = on