mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-06-28 09:28:55 -04:00
Fix serialization issue with RunTask using Configuration Cache (#128596)
This commit is contained in:
parent
f65949d899
commit
df43f8396b
1 changed files with 6 additions and 1 deletions
|
@ -46,7 +46,7 @@ public abstract class RunTask extends DefaultTestClustersTask {
|
||||||
|
|
||||||
private Boolean apmServerEnabled = false;
|
private Boolean apmServerEnabled = false;
|
||||||
|
|
||||||
private List<String> plugins = List.of();
|
private List<String> plugins;
|
||||||
|
|
||||||
private Boolean preserveData = false;
|
private Boolean preserveData = false;
|
||||||
|
|
||||||
|
@ -115,7 +115,12 @@ public abstract class RunTask extends DefaultTestClustersTask {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void setPlugins(List<String> plugins) {
|
||||||
|
this.plugins = plugins;
|
||||||
|
}
|
||||||
|
|
||||||
@Input
|
@Input
|
||||||
|
@Optional
|
||||||
public List<String> getPlugins() {
|
public List<String> getPlugins() {
|
||||||
return plugins;
|
return plugins;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue