fix compile error after merge

This commit is contained in:
Colin Goodheart-Smithe 2018-08-21 14:47:54 +01:00
parent 10c60fae93
commit 75cae4560c
No known key found for this signature in database
GPG Key ID: F975E7BDD739B3C7
1 changed files with 2 additions and 1 deletions

View File

@ -6,6 +6,7 @@
package org.elasticsearch.xpack.indexlifecycle;
import com.carrotsearch.hppc.cursors.ObjectCursor;
import org.apache.logging.log4j.Logger;
import org.apache.lucene.util.SetOnce;
import org.elasticsearch.client.Client;
@ -101,7 +102,7 @@ public class IndexLifecycleService extends AbstractComponent
boolean pollIntervalSettingChanged = !pollInterval.equals(previousPollInterval);
if (scheduler.get() == null) { // metadata installed and scheduler should be kicked off. start your engines.
scheduler.set(new SchedulerEngine(clock));
scheduler.set(new SchedulerEngine(settings, clock));
scheduler.get().register(this);
scheduleJob(pollInterval);
} else if (scheduledJob == null) {