diff options
author | Alvaro Herrera | 2017-07-12 18:39:44 +0000 |
---|---|---|
committer | Alvaro Herrera | 2017-07-12 18:39:44 +0000 |
commit | ca793c59a51e94cedf8cbea5c29668bf8fa298f3 (patch) | |
tree | 51928a19ab7a5e4317af1c2bd0551ef400957e42 | |
parent | 512f67c8d02cc558f9c269cc848b0f0f788c4fe1 (diff) |
commit_ts test: Set node name in test
Otherwise, the script output has a lot of pointless warnings.
This was forgotten in 9def031bd2821f35b5f506260d922482648a8bb0
-rw-r--r-- | src/test/modules/commit_ts/t/001_base.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/modules/commit_ts/t/001_base.pl b/src/test/modules/commit_ts/t/001_base.pl index 427092cfc5..9290a85d89 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; |