Change shard changes api's threadpool from get to search (#34421)

This commit is contained in:
Martijn van Groningen 2018-10-15 08:09:00 +01:00 committed by GitHub
parent 305b5845eb
commit 74dc2da873
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -288,7 +288,7 @@ public class ShardChangesAction extends Action<ShardChangesAction.Response> {
IndexNameExpressionResolver indexNameExpressionResolver,
IndicesService indicesService) {
super(settings, NAME, threadPool, clusterService, transportService, actionFilters,
indexNameExpressionResolver, Request::new, ThreadPool.Names.GET);
indexNameExpressionResolver, Request::new, ThreadPool.Names.SEARCH);
this.indicesService = indicesService;
}