Skip to content

Commit

Permalink
Disable reindex against 0.90 on mac (#51449)
Browse files Browse the repository at this point in the history
We still test remote reindex against version 0.90. This failed on mac a
few times and rather than spend time investigating this, we no longer
test remote reindex against 0.90 on mac.

Closes #51202
  • Loading branch information
henningandersen authored Jan 27, 2020
1 parent 1e5f77e commit a0a4c73
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion modules/reindex/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,13 @@ if (Os.isFamily(Os.FAMILY_WINDOWS)) {
} else {
/* Set up tasks to unzip and run the old versions of ES before running the
* integration tests. */
for (String version : ['2', '1', '090']) {
def versions = ['2', '1', '090']
if (Os.isFamily(Os.FAMILY_MAC)) {
// 0.90 fails sometimes on mac, given that it is so old, let us disable it
// see: https://github.com/elastic/elasticsearch/issues/51202
versions = ['2', '1']
}
for (String version : versions) {
Task unzip = task("unzipEs${version}", type: Sync) {
Configuration oldEsDependency = configurations['es' + version]
dependsOn oldEsDependency
Expand Down

0 comments on commit a0a4c73

Please sign in to comment.