mirror of
https://github.com/digital-asset/daml.git
synced 2024-11-10 10:46:11 +03:00
89369b3bb9
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
10 lines
251 B
Plaintext
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
|