Skip to content
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 flaky raft tests, checking for candidate state #597

Merged
merged 1 commit into from
Jun 6, 2024

Conversation

dhiaayachi
Copy link
Contributor

In some tests in raft_test.go we have the following pattern:

// wait for the remaining follower to trigger an election
waitForState(follower, Candidate)
require.Equal(t, Candidate, follower.getState())

The issue with this pattern is that candidate state is a transient state and a node is not expected to stay in it for a long time, so by the time we finish waitForState(follower, Candidate) and get the state again the new node state could already have changed.

@dhiaayachi dhiaayachi requested review from a team as code owners June 6, 2024 14:04
@dhiaayachi dhiaayachi requested review from rboyer and removed request for a team June 6, 2024 14:04
Copy link
Member

@jrasell jrasell left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM!

@dhiaayachi dhiaayachi merged commit d5f5737 into main Jun 6, 2024
13 checks passed
@dhiaayachi dhiaayachi deleted the dhiaayachi/flaky-tests-fix branch June 6, 2024 14:40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants