Skip to content

Commit

Permalink
Disable reindex test against 0.90 on mac (#51884)
Browse files Browse the repository at this point in the history
Follow-up to #51449 to also disable the test on mac.

Closes #51617
  • Loading branch information
henningandersen committed Feb 5, 2020
1 parent 31871e5 commit 64cab11
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@

import org.apache.http.HttpHost;
import org.apache.http.util.EntityUtils;
import org.apache.lucene.util.Constants;
import org.elasticsearch.client.Request;
import org.elasticsearch.client.Response;
import org.elasticsearch.client.RestClient;
Expand Down Expand Up @@ -117,6 +118,7 @@ public void testEs1() throws IOException {
}

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

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

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

Expand Down

0 comments on commit 64cab11

Please sign in to comment.