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:
Jason Tedor 2020-03-09 08:54:53 -04:00
parent 00657901ec
commit 8ad0080a59
No known key found for this signature in database
GPG Key ID: FA89F05560F16BC5
1 changed files with 1 additions and 1 deletions

View File

@ -395,7 +395,7 @@ public class ShardChangesAction extends ActionType<ShardChangesAction.Response>
@Override
public Executor executor() {
return threadPool.executor(ThreadPool.Names.LISTENER);
return threadPool.executor(Ccr.CCR_THREAD_POOL_NAME);
}
@Override