Skip to content

Commit

Permalink
[FEATURE][ML] Remove settings from run analytics action
Browse files Browse the repository at this point in the history
  • Loading branch information
dimitris-athanasiou committed Nov 22, 2018
1 parent 5e24b88 commit 7b47107
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
import org.elasticsearch.cluster.node.DiscoveryNode;
import org.elasticsearch.cluster.service.ClusterService;
import org.elasticsearch.common.inject.Inject;
import org.elasticsearch.common.settings.Settings;
import org.elasticsearch.env.Environment;
import org.elasticsearch.tasks.Task;
import org.elasticsearch.threadpool.ThreadPool;
Expand All @@ -37,10 +36,10 @@ public class TransportRunAnalyticsAction extends HandledTransportAction<RunAnaly


@Inject
public TransportRunAnalyticsAction(Settings settings, ThreadPool threadPool, TransportService transportService,
ActionFilters actionFilters, Client client, ClusterService clusterService, Environment environment,
public TransportRunAnalyticsAction(ThreadPool threadPool, TransportService transportService, ActionFilters actionFilters,
Client client, ClusterService clusterService, Environment environment,
AnalyticsProcessManager analyticsProcessManager) {
super(settings, RunAnalyticsAction.NAME, transportService, actionFilters,
super(RunAnalyticsAction.NAME, transportService, actionFilters,
(Supplier<RunAnalyticsAction.Request>) RunAnalyticsAction.Request::new);
this.transportService = transportService;
this.threadPool = threadPool;
Expand Down

0 comments on commit 7b47107

Please sign in to comment.