Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Let system decide which port to use for PoET gRPC in standalone mode (#…
…5172) ## Motivation Follow up to #5165 Additionally to Windows not liking `0.0.0.0` as connection address, the Windows GH runners sometimes disallow to listen on port 50002 (default for PoET gRPC). It seems to be an issue with some of the windows runners, since no other test uses a standalone PoET (so nothing should be listening there already) and it only appears to happen on Windows. Assigning a random (free) port as listen address seems generally a good idea (for parallelisation, less likely to fail, etc.) ## Changes - changed `RawRPCListener` to use a random port instead of the default one if node is launched in standalone mode ## Test Plan n/a ## TODO <!-- This section should be removed when all items are complete --> - [x] Explain motivation or link existing issue(s) - [x] Test changes and document test plan - [x] Update documentation as needed - [x] Update [changelog](../CHANGELOG.md) as needed
- Loading branch information