From d41ab71712a4457ed39d5471b23949872ac91def Mon Sep 17 00:00:00 2001 From: Robert Haas Date: Wed, 16 Oct 2013 09:41:03 -0400 Subject: [PATCH] initdb: Suppress dynamic shared memory when probing for max_connections. This might not be the right long-term solution here, but it will hopefully turn the buildfarm green again. Oversight noted by Andres Freund --- src/bin/initdb/initdb.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/initdb/initdb.c b/src/bin/initdb/initdb.c index f2a99ada35..f7073e26bd 100644 --- a/src/bin/initdb/initdb.c +++ b/src/bin/initdb/initdb.c @@ -1161,6 +1161,7 @@ test_config_settings(void) SYSTEMQUOTE "\"%s\" --boot -x0 %s " "-c max_connections=%d " "-c shared_buffers=%d " + "-c dynamic_shared_memory_type=none " "< \"%s\" > \"%s\" 2>&1" SYSTEMQUOTE, backend_exec, boot_options, test_conns, test_buffs, -- 2.40.0