8000 Code cleanup and tests stability by ololobus · Pull Request #7 · postgrespro/mmts · GitHub
[go: up one dir, main page]

Skip to content

Code cleanup and tests stability #7

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Apr 16, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Allow 65432 range back again.
  • Loading branch information
arssher authored Apr 16, 2021
commit 7cc27c7daf560c18b87b4c9d77e5f777e862f85e
2 changes: 1 addition & 1 deletion Cluster.pm
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ sub mm_get_free_port
{

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

# Check first that candidate port number is not included in
Expand Down
0