Watcher: Fix compilation issue in WatcherF class
Related to elastic/elasticsearch@368c41666c Original commit: elastic/x-pack-elasticsearch@ae6de46457
This commit is contained in:
parent
c098848765
commit
20a65dd6ca
|
@ -5,7 +5,7 @@
|
|||
*/
|
||||
package org.elasticsearch.watcher;
|
||||
|
||||
import org.elasticsearch.bootstrap.ElasticsearchF;
|
||||
import org.elasticsearch.bootstrap.Elasticsearch;
|
||||
import org.elasticsearch.license.plugin.LicensePlugin;
|
||||
|
||||
/**
|
||||
|
@ -27,7 +27,7 @@ public class WatcherF {
|
|||
System.setProperty("es.plugin.types", WatcherPlugin.class.getName() + "," + LicensePlugin.class.getName());
|
||||
System.setProperty("es.cluster.name", WatcherF.class.getSimpleName());
|
||||
|
||||
ElasticsearchF.main(args);
|
||||
Elasticsearch.main(args);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue