Skip to content

Commit d0865b9

Browse files
Disable reindex test against 0.90 on mac (#51884)
Follow-up to #51449 to also disable the test on mac. Closes #51617
1 parent d86a7ad commit d0865b9

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

modules/reindex/src/test/java/org/elasticsearch/index/reindex/remote/ReindexFromOldRemoteIT.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121

2222
import org.apache.http.HttpHost;
2323
import org.apache.http.util.EntityUtils;
24+
import org.apache.lucene.util.Constants;
2425
import org.elasticsearch.client.Request;
2526
import org.elasticsearch.client.Response;
2627
import org.elasticsearch.client.RestClient;
@@ -116,8 +117,8 @@ public void testEs1() throws IOException {
116117
oldEsTestCase("es1.port", null);
117118
}
118119

119-
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/51617")
120120
public void testEs090() throws IOException {
121+
assumeFalse("No longer works on Mac", Constants.MAC_OS_X);
121122
oldEsTestCase("es090.port", null);
122123
}
123124

@@ -129,8 +130,8 @@ public void testEs1WithFunnyThrottle() throws IOException {
129130
oldEsTestCase("es1.port", "11"); // 11 requests per second should give us a nice "funny" number on the scroll timeout
130131
}
131132

132-
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/51617")
133133
public void testEs090WithFunnyThrottle() throws IOException {
134+
assumeFalse("No longer works on Mac", Constants.MAC_OS_X);
134135
oldEsTestCase("es090.port", "11"); // 11 requests per second should give us a nice "funny" number on the scroll timeout
135136
}
136137

0 commit comments

Comments
 (0)