Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

AD opendistro 1.6 support #87

Merged
merged 12 commits into from
Apr 23, 2020
Prev Previous commit
Next Next commit
odfe 1.6 AD support
  • Loading branch information
vamshin committed Apr 14, 2020
commit 468e40ffe0dcfe1a7146a551ee98d1d56c8d87fc
10 changes: 10 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -170,6 +170,16 @@ testClusters.integTest {
plugin(fileTree("src/test/resources/job-scheduler").getSingleFile())
}

run {
doFirst {
// There seems to be an issue when running multi node run or integ tasks with unicast_hosts
// not being written, the waitForAllConditions ensures it's written
getClusters().forEach { cluster ->
cluster.waitForAllConditions()
}
}
}

evaluationDependsOnChildren()

task release(type: Copy, group: 'build') {