Changed the shard changes api to use get threadpool instead of management threadpool.

This commit is contained in:
Martijn van Groningen 2017-10-17 10:02:28 +02:00
parent 2663b5ef39
commit 41c3dc91c1
1 changed files with 1 additions and 1 deletions

View File

@ -200,7 +200,7 @@ public class ShardChangesAction extends Action<ShardChangesAction.Request, Shard
IndexNameExpressionResolver indexNameExpressionResolver,
IndicesService indicesService) {
super(settings, NAME, threadPool, clusterService, transportService, actionFilters,
indexNameExpressionResolver, Request::new, ThreadPool.Names.MANAGEMENT); // is management right tp?
indexNameExpressionResolver, Request::new, ThreadPool.Names.GET);
this.indicesService = indicesService;
}