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:
parent
1139cce9a3
commit
edc3e9f0ab
|
@ -23,7 +23,7 @@ public class RunTask extends DefaultTestClustersTask {
|
||||||
description = "Enable debugging configuration, to allow attaching a debugger to elasticsearch."
|
description = "Enable debugging configuration, to allow attaching a debugger to elasticsearch."
|
||||||
)
|
)
|
||||||
public void setDebug(boolean enabled) {
|
public void setDebug(boolean enabled) {
|
||||||
this.debug = debug;
|
this.debug = enabled;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Input
|
@Input
|
||||||
|
|
Loading…
Reference in New Issue