Fix rest test to not specify zip distribution
This was lefter from https://github.com/elastic/elasticsearch/pull/28805, and effectively did not allow changing the distribution from zip (exception in esplugin which sets it later).
This commit is contained in:
parent
f1a94de9e7
commit
88e44dd133
|
@ -46,7 +46,6 @@ public class RestTestPlugin implements Plugin<Project> {
|
|||
RestIntegTestTask integTest = project.tasks.create('integTest', RestIntegTestTask.class)
|
||||
integTest.description = 'Runs rest tests against an elasticsearch cluster.'
|
||||
integTest.group = JavaBasePlugin.VERIFICATION_GROUP
|
||||
integTest.clusterConfig.distribution = 'zip' // rest tests should run with the real zip
|
||||
integTest.mustRunAfter(project.precommit)
|
||||
project.check.dependsOn(integTest)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue