Skip to content

Commit 7cc27c7

Browse files
authored
Allow 65432 range back again.
1 parent e393be8 commit 7cc27c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: Cluster.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ sub mm_get_free_port
3232
{
3333

3434
# advance $port, wrapping correctly around range end
35-
$port = 26000 if ++$port >= 27000;
35+
$port = 26000 if ++$port == 27000;
3636
print "# Checking port $port\n";
3737

3838
# Check first that candidate port number is not included in

0 commit comments

Comments
 (0)