Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable reindex test against 0.90 on mac #51884

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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