PostgresNode: wrap correctly around port number range end

Per note from Tom Lane
pull/14/head^2
Alvaro Herrera 10 years ago
parent 7e19db0c09
commit 7ac5d9b316
  1. 3
      src/test/perl/PostgresNode.pm

@ -321,7 +321,8 @@ sub get_new_node
while ($found == 0)
{
$port++;
# wrap correctly around range end
$port = 49152 if ++$port >= 65536;
print "# Checking for port $port\n";
if (!TestLib::run_log([ 'pg_isready', '-p', $port ]))
{

Loading…
Cancel
Save