REQ-3540: 解决依赖问题

This commit is contained in:
yanglin 2025-03-20 17:17:02 +08:00
parent 4f47f1df50
commit 41565d496d

View File

@ -46,7 +46,9 @@ class IndexSupport {
private final IndexNodeDao indexNodeDao;
private final DocLockDao docLockDao;
private final DocProps docProps;
private final ExecutorService executor = new ThreadPoolExecutor(3, 10, 5L, TimeUnit.MINUTES,
private final ExecutorService executor = new ThreadPoolExecutor( //
3, 10, //
5L, TimeUnit.MINUTES, //
new ArrayBlockingQueue<>(100), new CallerRunsPolicy());
IndexNode createNode(NodeCreate create, IndexNodeType nodeType) {