#
luxiaotao1123
2024-10-30 d2bdac9da5131cfe34612d491377b0ac544d56bd
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;
        }