mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-03-09 14:34:43 +00:00
removed unused field
Original commit: elastic/x-pack-elasticsearch@1c4e94b5b2
This commit is contained in:
parent
4e8ed283e7
commit
946df191e9
@ -8,7 +8,6 @@ package org.elasticsearch.watcher.execution;
|
|||||||
import org.elasticsearch.ElasticsearchIllegalStateException;
|
import org.elasticsearch.ElasticsearchIllegalStateException;
|
||||||
import org.elasticsearch.ExceptionsHelper;
|
import org.elasticsearch.ExceptionsHelper;
|
||||||
import org.elasticsearch.action.ActionListener;
|
import org.elasticsearch.action.ActionListener;
|
||||||
import org.elasticsearch.cluster.ClusterService;
|
|
||||||
import org.elasticsearch.cluster.ClusterState;
|
import org.elasticsearch.cluster.ClusterState;
|
||||||
import org.elasticsearch.common.component.AbstractComponent;
|
import org.elasticsearch.common.component.AbstractComponent;
|
||||||
import org.elasticsearch.common.inject.Inject;
|
import org.elasticsearch.common.inject.Inject;
|
||||||
@ -46,7 +45,6 @@ public class ExecutionService extends AbstractComponent {
|
|||||||
private final HistoryStore historyStore;
|
private final HistoryStore historyStore;
|
||||||
private final WatchExecutor executor;
|
private final WatchExecutor executor;
|
||||||
private final WatchStore watchStore;
|
private final WatchStore watchStore;
|
||||||
private final ClusterService clusterService;
|
|
||||||
private final WatchLockService watchLockService;
|
private final WatchLockService watchLockService;
|
||||||
private final Clock clock;
|
private final Clock clock;
|
||||||
|
|
||||||
@ -54,13 +52,12 @@ public class ExecutionService extends AbstractComponent {
|
|||||||
|
|
||||||
@Inject
|
@Inject
|
||||||
public ExecutionService(Settings settings, HistoryStore historyStore, WatchExecutor executor, WatchStore watchStore,
|
public ExecutionService(Settings settings, HistoryStore historyStore, WatchExecutor executor, WatchStore watchStore,
|
||||||
WatchLockService watchLockService, ClusterService clusterService, Clock clock) {
|
WatchLockService watchLockService, Clock clock) {
|
||||||
super(settings);
|
super(settings);
|
||||||
this.historyStore = historyStore;
|
this.historyStore = historyStore;
|
||||||
this.executor = executor;
|
this.executor = executor;
|
||||||
this.watchStore = watchStore;
|
this.watchStore = watchStore;
|
||||||
this.watchLockService = watchLockService;
|
this.watchLockService = watchLockService;
|
||||||
this.clusterService = clusterService;
|
|
||||||
this.clock = clock;
|
this.clock = clock;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user