aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/test/perl/PostgresNode.pm7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/test/perl/PostgresNode.pm b/src/test/perl/PostgresNode.pm
index c3939edc530..00fe082fe4e 100644
--- a/src/test/perl/PostgresNode.pm
+++ b/src/test/perl/PostgresNode.pm
@@ -477,13 +477,12 @@ sub init
{
print $conf "wal_level = replica\n";
}
- print $conf "max_wal_senders = 5\n";
- print $conf "max_replication_slots = 5\n";
print $conf "max_wal_size = 128MB\n";
- print $conf "shared_buffers = 1MB\n";
print $conf "wal_log_hints = on\n";
print $conf "hot_standby = on\n";
- print $conf "max_connections = 10\n";
+ # conservative settings to ensure we can run multiple postmasters:
+ print $conf "shared_buffers = 1MB\n";
+ print $conf "max_connections = 20\n";
}
else
{