Hello Community,
In templates/db/postgresql/template_db_postgresql.conf we have:
In templates/db/postgresql/template_db_postgresql.yaml we have trigger that have dependence on locale:
So this solves the issue:
In templates/db/postgresql/template_db_postgresql.conf:
In templates/db/postgresql/template_db_postgresql.conf we have:
Code:
UserParameter=pgsql.ping[*], pg_isready -h "$1" -p "$2"
Code:
- 'return value.search(/accepting connections/)>0 ? 1 : 0'
In templates/db/postgresql/template_db_postgresql.conf:
Code:
UserParameter=pgsql.ping[*], LANG=C.UTF-8 pg_isready -h "$1" -p "$2"
Comment