Skip to content

Commit

Permalink
Temporarily disable testStartTransform_GivenTimeout_Returns408 test case
Browse files Browse the repository at this point in the history
  • Loading branch information
przemekwitek committed May 28, 2024
1 parent 88ff070 commit 6640ffc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -590,6 +590,7 @@ public void testContinuousTransformRethrottle() throws Exception {
deleteTransform(config.getId());
}

@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/108561")
public void testStartTransform_GivenTimeout_Returns408() throws Exception {
String indexName = "start-transform-timeout-index";
String transformId = "start-transform-timeout";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
import java.util.Map;

import static org.hamcrest.Matchers.equalTo;
import static org.hamcrest.Matchers.greaterThan;
import static org.hamcrest.Matchers.greaterThanOrEqualTo;
import static org.hamcrest.Matchers.hasKey;
import static org.hamcrest.Matchers.is;
Expand Down Expand Up @@ -60,7 +59,7 @@ public void testTransformNodeStats() throws Exception {
assertThat(
"Response was: " + response,
(int) XContentMapValues.extractValue(response, "total", "scheduler", "registered_transform_count"),
is(greaterThan(0))
is(equalTo(1))
);
for (String nodeId : nodesInfo.keySet()) {
assertThat(response, hasKey(nodeId));
Expand Down

0 comments on commit 6640ffc

Please sign in to comment.