Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix Race in AsyncTwoPhaseIndexerTests.testStateMachine (elastic#40947)
* The step is incremented by the listner in `org.elasticsearch.xpack.core.indexing.AsyncTwoPhaseIndexerTests.MockIndexer#onFinish` after isFinished is set to true, but the test only waited for `isFinished`, fixed by calling `isFinished` last * Also made `step` volatile since we are reading it from different thread from the one incrementing it * Closes elastic#40946
- Loading branch information