Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
std: Bind port early to make a test more reliable
This test would read with a timeout and then send a UDP message, expecting the message to be received. The receiving port, however, was bound in the child thread so it could be the case that the timeout and send happens before the child thread runs. To remedy this we just bind the port before the child thread runs, moving it into the child later on. cc #19120
- Loading branch information