We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Testgres cannot allocate a port number 65535, because it uses the range(1024, 65535):
testgres/testgres/impl/port_manager__generic.py
Line 23 in edd64db
I think we have to allow usage of 65535 port number to enlarge our valid range of ports )
The fix is trivial - set ( range ( 1024 , 65536 )
set ( range ( 1024 , 65536 )
Another problems in this code will be fixed, too.
https://www.ncftp.com/ncftpd/doc/misc/ephemeral_ports.html
The text was updated successfully, but these errors were encountered:
[postgrespro#256] A used port range is [1024 ... 65535]
f085b70
PortManager__Generic is updated.
dmitry-lipetsk
Successfully merging a pull request may close this issue.
Testgres cannot allocate a port number 65535, because it uses the range(1024, 65535):
testgres/testgres/impl/port_manager__generic.py
Line 23 in edd64db
I think we have to allow usage of 65535 port number to enlarge our valid range of ports )
The fix is trivial -
set ( range ( 1024 , 65536 )
Another problems in this code will be fixed, too.
See also
https://www.ncftp.com/ncftpd/doc/misc/ephemeral_ports.html
The text was updated successfully, but these errors were encountered: