From: Alvaro Herrera Date: Wed, 12 Jul 2017 18:39:44 +0000 (-0400) Subject: commit_ts test: Set node name in test X-Git-Tag: REL_10_BETA3~130 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ca793c59a51e94cedf8cbea5c29668bf8fa298f3;p=thirdparty%2Fpostgresql.git commit_ts test: Set node name in test Otherwise, the script output has a lot of pointless warnings. This was forgotten in 9def031bd2821f35b5f506260d922482648a8bb0 --- diff --git a/src/test/modules/commit_ts/t/001_base.pl b/src/test/modules/commit_ts/t/001_base.pl index 427092cfc50..9290a85d89e 100644 --- a/src/test/modules/commit_ts/t/001_base.pl +++ b/src/test/modules/commit_ts/t/001_base.pl @@ -7,7 +7,7 @@ use TestLib; use Test::More tests => 2; use PostgresNode; -my $node = get_new_node(); +my $node = get_new_node('foxtrot'); $node->init; $node->append_conf('postgresql.conf', 'track_commit_timestamp = on'); $node->start;