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
The way a random port is chosen means there are sometimes conflicts when the address is already in use.
aws_ex_ray/lib/aws_ex_ray/client/udp_client.ex
Line 96 in ab6e07f
Why not let the operating system do it?
> {:ok, port} = :gen_udp.open(0, [:binary]) {:ok, #Port<0.21>} > :inet.port(port) {:ok, 61367}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The way a random port is chosen means there are sometimes conflicts when the address is already in use.
aws_ex_ray/lib/aws_ex_ray/client/udp_client.ex
Line 96 in ab6e07f
Why not let the operating system do it?
The text was updated successfully, but these errors were encountered: