|
16 | 16 | import org.elasticsearch.client.Client; |
17 | 17 | import org.elasticsearch.cluster.ClusterState; |
18 | 18 | import org.elasticsearch.cluster.metadata.IndexMetaData; |
19 | | -import org.elasticsearch.cluster.metadata.IndexNameExpressionResolver; |
20 | 19 | import org.elasticsearch.cluster.routing.allocation.decider.EnableAllocationDecider; |
21 | 20 | import org.elasticsearch.cluster.routing.allocation.decider.ShardsLimitAllocationDecider; |
22 | 21 | import org.elasticsearch.cluster.service.ClusterService; |
@@ -180,9 +179,9 @@ public static class TransportAction extends HandledTransportAction<Request, Resp |
180 | 179 |
|
181 | 180 | @Inject |
182 | 181 | public TransportAction(Settings settings, ThreadPool threadPool, TransportService transportService, ActionFilters actionFilters, |
183 | | - IndexNameExpressionResolver indexNameExpressionResolver, Client client, ClusterService clusterService, |
184 | | - PersistentTasksService persistentTasksService, IndicesService indicesService) { |
185 | | - super(settings, NAME, threadPool, transportService, actionFilters, indexNameExpressionResolver, Request::new); |
| 182 | + Client client, ClusterService clusterService, PersistentTasksService persistentTasksService, |
| 183 | + IndicesService indicesService) { |
| 184 | + super(settings, NAME, threadPool, transportService, actionFilters, Request::new); |
186 | 185 | this.client = client; |
187 | 186 | this.clusterService = clusterService; |
188 | 187 | this.remoteClusterService = transportService.getRemoteClusterService(); |
|
0 commit comments