8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 082cac7 commit d5d1254Copy full SHA for d5d1254
Cluster.pm
@@ -32,7 +32,7 @@ sub mm_get_free_port
32
{
33
34
# advance $port, wrapping correctly around range end
35
- $port = 26000 if ++$port >= 27000;
+ $port = 26000 if ++$port == 27000;
36
8FF4 print "# Checking port $port\n";
37
38
# Check first that candidate port number is not included in
run.pl
@@ -19,7 +19,7 @@
19
20
if ($action eq "start")
21
22
- $PostgresNode::last_port_assigned = 65431;
+ $Cluster::last_port_assigned = 65431;
23
24
my $cluster = new Cluster($n_nodes, $referee);
25
$cluster->init();
0 commit comments