each full cluster restart round should use its own repository,

otherwise snapshots from e.g. 6.5.5 to current and 6.6.0 to current
full cluster restart round collides.
This commit is contained in:
Martijn van Groningen 2019-01-28 13:55:53 +01:00
parent a9adc16922
commit 445db97867
No known key found for this signature in database
GPG Key ID: AB236F4FCF2AF12A

View File

@ -39,7 +39,7 @@ for (Version version : bwcVersions.indexCompatible) {
tasks.getByName("${baseName}#oldClusterTestRunner").configure {
systemProperty 'tests.is_old_cluster', 'true'
systemProperty 'tests.old_cluster_version', version.toString().minus("-SNAPSHOT")
systemProperty 'tests.path.repo', new File(buildDir, "cluster/shared/repo")
systemProperty 'tests.path.repo', new File(buildDir, "cluster/shared/repo/" + baseName)
}
Object extension = extensions.findByName("${baseName}#oldClusterTestCluster")