From a332a82d1f7554f1b81fe4d59f3f9aea27bf4c0e Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Fri, 8 Feb 2019 08:38:54 +0100 Subject: [PATCH 2/2] Set cluster_name for PostgresNode.pm instances This can help identifying test instances more easily at run time, and it also provides some minimal test coverage for the cluster_name feature. --- src/test/perl/PostgresNode.pm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/test/perl/PostgresNode.pm b/src/test/perl/PostgresNode.pm index 8a2c6fc122..0634aefd20 100644 --- a/src/test/perl/PostgresNode.pm +++ b/src/test/perl/PostgresNode.pm @@ -700,8 +700,10 @@ sub start my $name = $self->name; BAIL_OUT("node \"$name\" is already running") if defined $self->{_pid}; print("### Starting node \"$name\"\n"); + # Note: We set the cluster_name here, not in postgresql.conf (in + # sub init) so that it does not get copied to standbys. my $ret = TestLib::system_log('pg_ctl', '-D', $self->data_dir, '-l', - $self->logfile, 'start'); + $self->logfile, '-o', "--cluster-name=$name", 'start'); if ($ret != 0) { -- 2.20.1