From 74dc2da8731e2e666beafeb32a39e50ac47395be Mon Sep 17 00:00:00 2001 From: Martijn van Groningen Date: Mon, 15 Oct 2018 08:09:00 +0100 Subject: [PATCH] Change shard changes api's threadpool from get to search (#34421) --- .../org/elasticsearch/xpack/ccr/action/ShardChangesAction.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/plugin/ccr/src/main/java/org/elasticsearch/xpack/ccr/action/ShardChangesAction.java b/x-pack/plugin/ccr/src/main/java/org/elasticsearch/xpack/ccr/action/ShardChangesAction.java index eb31ce25746..4c82c90b2d5 100644 --- a/x-pack/plugin/ccr/src/main/java/org/elasticsearch/xpack/ccr/action/ShardChangesAction.java +++ b/x-pack/plugin/ccr/src/main/java/org/elasticsearch/xpack/ccr/action/ShardChangesAction.java @@ -288,7 +288,7 @@ public class ShardChangesAction extends Action { 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; }