Closed edsantiago closed 1 month ago
Ports in the range in /proc/sys/net/ipv4/ip_local_port_range 32768-60999
will be used as ephemeral range so any process binding to port 0 or connect somewhere else (outgoing connection) can get ports from this range assigned.
That races with our port is free logic as we check if it is free and then later use it, if another process got it between that we fail. That doesn't mean it is the cause here but I would recommend against using ports from this range to avoid such races.
Treating this one as closed by #24002
Weird one, seen only twice in 1 month:
Not a parallelization bug. I'm completely stumped.