-
Notifications
You must be signed in to change notification settings - Fork 273
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
Apply more unified scheduler related core cleanups #4453
base: master
Are you sure you want to change the base?
Conversation
#[cfg_attr( | ||
feature = "frozen-abi", | ||
derive(AbiExample), | ||
frozen_abi(digest = "DAdZnX6ijBWaxKAyksq4nJa6PAZqT4RShZqLWTtNvyAM") | ||
)] |
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.
this was temporarily removed by #3974. but it seems the reported build issue disappeared..
@@ -106,7 +106,6 @@ tokio = { workspace = true, features = ["full"] } | |||
trees = { workspace = true } | |||
|
|||
[dev-dependencies] | |||
assert_matches = { workspace = true } |
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.
should have been removed at the same timing with #4123...
// Create a partially-dummy ClusterInfo for the banking stage. | ||
let cluster_info_for_banking = Arc::new(DummyClusterInfo { | ||
id: simulated_leader.into(), | ||
}); |
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.
iirc cluster info is only needed for forwarding. once I remove forwarding from banking stage (soon after #3820) we can get rid of all this I think.
Problem
more clean up is needed after #4123
Summary of Changes
Do it.
extracted from #3946