You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 18, 2020. It is now read-only.
Hello,
I've been trying to start embedded-elasticsearch using plugin search-guard (versions 6.2.1 ), but I would like to execute a shell script of this plugin before elasticsearch really starts. As .start() method encapsulates installation, initialization and configuration together, would you consider to release an improvement, for example .install() with installElastic() encapsulated only, to make it more flexible specific plugins' configuration before .startElastic() node? Only a suggestion.....but thanks anyway
public void install() throws IOException, InterruptedException {
installElastic();
}
Hello,
I've been trying to start embedded-elasticsearch using plugin search-guard (versions 6.2.1 ), but I would like to execute a shell script of this plugin before elasticsearch really starts. As .start() method encapsulates installation, initialization and configuration together, would you consider to release an improvement, for example .install() with installElastic() encapsulated only, to make it more flexible specific plugins' configuration before .startElastic() node? Only a suggestion.....but thanks anyway
public void install() throws IOException, InterruptedException {
installElastic();
}
public EmbeddedElastic start() throws IOException, InterruptedException {
startElastic();
createRestClient();
createTemplates();
createIndices();
return this;
}
The text was updated successfully, but these errors were encountered: