diff options
author | Andrew Dunstan <andrew@dunslane.net> | 2021-04-21 11:12:04 -0400 |
---|---|---|
committer | Andrew Dunstan <andrew@dunslane.net> | 2021-04-21 11:16:13 -0400 |
commit | 246e9f0341ef6215c09f398ea90ae09abdf5d714 (patch) | |
tree | 1fcac400d5a1ffbd103aa368915fe2c1acd8a8a5 /src | |
parent | a2eb086042ba7b2c50f0708ba302ce83a844529b (diff) | |
download | postgresql-246e9f0341ef6215c09f398ea90ae09abdf5d714.tar.gz postgresql-246e9f0341ef6215c09f398ea90ae09abdf5d714.zip |
fix silly perl error in commit d064afc720
Diffstat (limited to 'src')
-rw-r--r-- | src/test/perl/PostgresNode.pm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/test/perl/PostgresNode.pm b/src/test/perl/PostgresNode.pm index da8d07f73cf..16fa2036615 100644 --- a/src/test/perl/PostgresNode.pm +++ b/src/test/perl/PostgresNode.pm @@ -1007,8 +1007,7 @@ sub get_new_node if ($found == 1) { foreach my $addr (qw(127.0.0.1), - $use_tcp ? qw(127.0.0.2 127.0.0.3 0.0.0.0) : ()) - $use_tcp && $TestLib::windows_os + ($use_tcp && $TestLib::windows_os) ? qw(127.0.0.2 127.0.0.3 0.0.0.0) : ()) { |