#
luxiaotao1123
2024-10-18 fd1c390222642abd57e0662d2328a008d0a0c845
zy-acs-manager/src/main/java/com/zy/acs/manager/core/TestController.java
@@ -172,7 +172,7 @@
    @Scheduled(cron = "0/1 * * * * ? ")
    private void demo() throws InterruptedException {
        if (!this.autoDemo) { return; }
        int busLimit = Integer.parseInt(configService.getVal("busLimit"));
        int busLimit = configService.getVal("busLimit", Integer.class);
        if (autoSize != null) {
            busLimit = autoSize;
        }
@@ -246,7 +246,7 @@
    @Scheduled(cron = "0/3 * * * * ? ")
    private void demo1() throws InterruptedException {
        if (!this.autoDemo1) { return; }
        int busLimit = Integer.parseInt(configService.getVal("busLimit"));
        int busLimit = configService.getVal("busLimit", Integer.class);
        if (autoSize != null) {
            busLimit = autoSize;
        }
@@ -314,7 +314,7 @@
    @Scheduled(cron = "0/3 * * * * ? ")
    private void demo2() throws InterruptedException {
        if (!this.autoDemo2) { return; }
        int busLimit = Integer.parseInt(configService.getVal("busLimit"));
        int busLimit = configService.getVal("busLimit", Integer.class);
        if (autoSize != null) {
            busLimit = autoSize;
        }