File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
x-pack/plugin/rollup/src/test/java/org/elasticsearch/xpack/rollup/job Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -256,7 +256,6 @@ public void testStarted() throws Exception {
256256 }
257257 }
258258
259- @ AwaitsFix (bugUrl = "https://github.com/elastic/elasticsearch/issues/41046" )
260259 public void testIndexing () throws Exception {
261260 RollupJob job = new RollupJob (ConfigTestHelpers .randomRollupJobConfig (random ()), Collections .emptyMap ());
262261 AtomicReference <IndexerState > state = new AtomicReference <>(IndexerState .STOPPED );
@@ -267,8 +266,8 @@ public void testIndexing() throws Exception {
267266 @ Override
268267 protected void onFinish (ActionListener <Void > listener ) {
269268 super .onFinish (ActionListener .wrap (r -> {
270- isFinished .set (true );
271269 listener .onResponse (r );
270+ isFinished .set (true );
272271 }, listener ::onFailure ));
273272 }
274273 };
@@ -316,8 +315,8 @@ public void testStateChangeMidTrigger() throws Exception {
316315 @ Override
317316 protected void onFinish (ActionListener <Void > listener ) {
318317 super .onFinish (ActionListener .wrap (r -> {
319- isFinished .set (true );
320318 listener .onResponse (r );
319+ isFinished .set (true );
321320 }, listener ::onFailure ));
322321 }
323322 };
You can’t perform that action at this time.
0 commit comments