Fork CCR checkpoint listeners on CCR thread pool (#53265)
This commit moves the global checkpoint listeners used in CCR to the CCR thread pool. This removes the last use of the listener thread pool in the codebase.
This commit is contained in:
parent
00657901ec
commit
8ad0080a59
|
@ -395,7 +395,7 @@ public class ShardChangesAction extends ActionType<ShardChangesAction.Response>
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Executor executor() {
|
public Executor executor() {
|
||||||
return threadPool.executor(ThreadPool.Names.LISTENER);
|
return threadPool.executor(Ccr.CCR_THREAD_POOL_NAME);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in New Issue