ES deploy workaround.

This commit is contained in:
Tyler Benson 2019-10-23 11:10:52 -07:00
parent fbd16d8cb7
commit 079dfd24bd
4 changed files with 13 additions and 8 deletions

View File

@ -44,8 +44,10 @@ dependencies {
testCompile group: 'org.elasticsearch', name: 'elasticsearch', version: '6.4.0'
testCompile group: 'org.elasticsearch.plugin', name: 'transport-netty4-client', version: '6.4.0'
latestDepTestCompile group: 'org.elasticsearch.client', name: 'elasticsearch-rest-client', version: '6.+'
latestDepTestCompile group: 'org.elasticsearch.client', name: 'transport', version: '6.+'
latestDepTestCompile group: 'org.elasticsearch', name: 'elasticsearch', version: '6.+'
latestDepTestCompile group: 'org.elasticsearch.plugin', name: 'transport-netty4-client', version: '6.+'
// TODO: The tests are incompatible with 7.x. The instrumentation may be as well.
// FIXME: Lock to specific version due to bad deploy rollout.
latestDepTestCompile group: 'org.elasticsearch.client', name: 'elasticsearch-rest-client', version: '6.8.3'
latestDepTestCompile group: 'org.elasticsearch.client', name: 'transport', version: '6.8.3'
latestDepTestCompile group: 'org.elasticsearch', name: 'elasticsearch', version: '6.8.3'
latestDepTestCompile group: 'org.elasticsearch.plugin', name: 'transport-netty4-client', version: '6.8.3'
}

View File

@ -8,7 +8,8 @@ muzzle {
group = "org.elasticsearch.client"
module = "transport"
versions = "[5.3.0,6.0.0)"
assertInverse = true
// Work around for a bad release of 6.8.4
// assertInverse = true
}
pass {
group = "org.elasticsearch"

View File

@ -8,7 +8,8 @@ muzzle {
group = "org.elasticsearch.client"
module = "transport"
versions = "[5.0.0,5.3.0)"
assertInverse = true
// Work around for a bad release of 6.8.4
// assertInverse = true
}
pass {
group = "org.elasticsearch"

View File

@ -7,8 +7,9 @@ muzzle {
pass {
group = "org.elasticsearch.client"
module = "transport"
versions = "[6.0.0,)"
assertInverse = true
versions = "[6.0.0,6.8.4)"
// Work around for a bad release of 6.8.4
// assertInverse = true
}
pass {
group = "org.elasticsearch"