Skip to content

Commit 64cab11

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 31871e5 commit 64cab11

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

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

Lines changed: 3 additions & 0 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;
@@ -117,6 +118,7 @@ public void testEs1() throws IOException {
117118
}
118119

119120
public void testEs090() throws IOException {
121+
assumeFalse("No longer works on Mac", Constants.MAC_OS_X);
120122
oldEsTestCase("es090.port", null);
121123
}
122124

@@ -129,6 +131,7 @@ public void testEs1WithFunnyThrottle() throws IOException {
129131
}
130132

131133
public void testEs090WithFunnyThrottle() throws IOException {
134+
assumeFalse("No longer works on Mac", Constants.MAC_OS_X);
132135
oldEsTestCase("es090.port", "11"); // 11 requests per second should give us a nice "funny" number on the scroll timeout
133136
}
134137

0 commit comments

Comments
 (0)