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:
Ryan Ernst 2018-02-24 23:12:13 -08:00
parent f1a94de9e7
commit 88e44dd133
1 changed files with 0 additions and 1 deletions

View File

@ -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)
}