From 2f7983ad4c0698c79170b2e2053615ba79a86378 Mon Sep 17 00:00:00 2001 From: Bernhard Radermacher Date: Tue, 24 Feb 2026 11:37:41 +0100 Subject: [PATCH] wip --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 5696e20..1616d75 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -83,7 +83,7 @@ pg_setup_conf() { printf "max_replication_slots = 10\n" printf "shared_preload_libraries = 'repmgr'\n" if [[ -n $POSTGRES_MAX_CONNECTIONS ]]; then - printf "\nmax_connections = ${POSTGRES_MAX_CONNECTIONS}\n" + printf "\nmax_connections = '%s'\n" "$POSTGRES_MAX_CONNECTIONS" fi } >> "$PGDATA/postgresql.conf" }