-
Notifications
You must be signed in to change notification settings - Fork 84
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
Concurrent addition of multiple members is not correct #175
Comments
Still fails... investigating |
The issue is that - when adding |
Solution: the leader chains all |
Code:
|
DynamicMembershipTest.testAddServerSimultaneously()
is not correct:majority
in aRequestTable.Entry
is cached (per call, possibly with multiple entries being added to the request-table), and the number of votes required for a majority is not correct.Perhaps use
raft.majority()
dynamically?The text was updated successfully, but these errors were encountered: