#
luxiaotao1123
2024-12-02 f02bcf6f8de66d54fc4d9b10d62f82f3c7aa3574
zy-acs-manager/src/main/java/com/zy/acs/manager/fake/FakeProcessor.java
@@ -70,7 +70,7 @@
        List<Agv> agvList = agvService.list(new LambdaQueryWrapper<Agv>().eq(Agv::getStatus, StatusType.ENABLE.val));
        // init executorService
        if (null == this.executorService) {
            int count = agvList.size() > 30 ? agvList.size() : 20;
            int count = agvList.size() > 30 ? 20 : agvList.size();
            this.executorService = Executors.newFixedThreadPool(count);
        }