Revert "Build: Fail integ test if elasticsearch fails to start on windows"

This reverts commit f974d5e470.

Apprently spawn does not support failonerror in ant.
This commit is contained in:
Ryan Ernst 2015-11-06 08:22:17 -08:00
parent af3b126a15
commit c71cc0f21d
1 changed files with 1 additions and 1 deletions

View File

@ -139,7 +139,7 @@ class ClusterFormationTasks {
// elasticsearch.bat is spawned as it has no daemon mode
start = project.tasks.create(name: "${task.name}#start", type: DefaultTask, dependsOn: setup) << {
// Fall back to Ant exec task as Gradle Exec task does not support spawning yet
ant.exec(executable: 'cmd', spawn: true, dir: home, failonerror: true) {
ant.exec(executable: 'cmd', spawn: true, dir: home) {
esEnv.each { key, value -> env(key: key, value: value) }
(['/C', 'call', 'bin/elasticsearch'] + esArgs).each { arg(value: it) }
}