-
Notifications
You must be signed in to change notification settings - Fork 53
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
fix orchestrator validator args #2185
Conversation
#2168 changes this, but the examples aren't included in the basic lint/build anymore Having a problem with some of the examples (like all-webserver), will add to this PR |
args.url, | ||
args.port | ||
); | ||
tracing::error!("connecting to orchestrator at {:?}:{:?}", args.url,); |
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.
tracing::error!("connecting to orchestrator at {:?}:{:?}", args.url,); | |
tracing::error!("connecting to orchestrator at {:?}", args.url); |
Co-authored-by: Mathis <[email protected]>
Ah yes, we also need to update those examples. |
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
Closes #<ISSUE_NUMBER>
This PR:
This PR does not:
Key places to review:
orchestrator/src/client.rs
How to test this PR:
Run
cargo run --example orchestrator-webserver --features="libp2p/rsa " -- http://localhost:5555 ./crates/orchestrator/run-config.toml
in one terminal andcargo run --example multi-validator-webserver --features="libp2p/rsa" -- 10 http://localhost:5555
in another. It should correctly start consensus.