From b5e96c7f374af291a57b783454c123ddb0099248 Mon Sep 17 00:00:00 2001 From: Martijn van Groningen Date: Fri, 12 Oct 2018 16:25:43 +0100 Subject: [PATCH] Change shard changes api's threadpool from get to search --- .../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 eb31ce2574684..4c82c90b2d544 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 TransportAction(Settings settings, 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; }