-
Notifications
You must be signed in to change notification settings - Fork 797
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
Reduced the number of validators in the Local Kube tests to 1. #3154
base: main
Are you sure you want to change the base?
Reduced the number of validators in the Local Kube tests to 1. #3154
Conversation
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.
@@ -97,7 +97,7 @@ impl SharedLocalKubernetesNetTestingConfig { | |||
testing_prng_seed: Some(37), | |||
num_other_initial_chains: 2, | |||
initial_amount: Amount::from_tokens(2000), | |||
num_initial_validators: 4, | |||
num_initial_validators: 1, |
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.
We could even do 2, I think, and it would probably still mitigate the issue (if we want to keep kind
testing more than 1 validator still, but maybe that's not needed)
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.
In terms of test coverage, 2 is not better than 1, so I would pick 1
f776c02
to
7feffbc
Compare
Motivation
Having 4 validators for the
kind
tests is unnecessary. Storage service tests will catch any consensus related regressions.Proposal
Reduce the number of validators to 1.
Test Plan
CI will catch regressions.
Release Plan