-
Notifications
You must be signed in to change notification settings - Fork 793
New issue
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
[Merged by Bors] - Await listening address from libp2p in RPC tests setup #4705
Conversation
Logging output seems to suggest that this is working as intended and all of the relevant tests are passing so I'm marking this as ready. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM Jack
let port = 0; | ||
let config = build_config(port, boot_nodes); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit:
let port = 0; | |
let config = build_config(port, boot_nodes); | |
let config = build_config(0, boot_nodes); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I actually think it's more readable as he has it right now since it gives the extra context that 0 is a port, not a size, or a retry count etc
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah this is the only reason I didn't roll it into the build_config
call directly.
bors r+ |
Build failed: |
bors retry |
Pull request successfully merged into unstable. Build succeeded! The publicly hosted instance of bors-ng is deprecated and will go away soon. If you want to self-host your own instance, instructions are here. If you want to switch to GitHub's built-in merge queue, visit their help page.
|
Issue Addressed
#4704
Proposed Changes
Additional Info
See also: #4675