This fixes the `--debug-jvm` arg to work again for the `run` task. Seems a recent refactoring of `RunTask` introduced this obvious type.
@@ -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