Fix --debug-jvm Gradle Arg (#47773) (#47783)

This fixes the `--debug-jvm` arg to work again for
the `run` task.
Seems a recent refactoring of `RunTask` introduced
this obvious type.
This commit is contained in:
Armin Braun 2019-10-09 13:25:16 +02:00 committed by GitHub
parent 1139cce9a3
commit edc3e9f0ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ public class RunTask extends DefaultTestClustersTask {
description = "Enable debugging configuration, to allow attaching a debugger to elasticsearch."
)
public void setDebug(boolean enabled) {
this.debug = debug;
this.debug = enabled;
}
@Input