Watcher: Fix compilation issue in WatcherF class

Related to elastic/elasticsearch@368c41666c

Original commit: elastic/x-pack-elasticsearch@ae6de46457
This commit is contained in:
Tanguy Leroux 2015-08-10 09:55:28 +02:00
parent c098848765
commit 20a65dd6ca
1 changed files with 2 additions and 2 deletions

View File

@ -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);
}
}