streampark-console/streampark-console-service/src/main/java/org/apache/streampark/console/core/watcher/FlinkAppHttpWatcher.java [214:223]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void start() {
        Long timeMillis = System.currentTimeMillis();
        if (lastWatchTime == null
            || !OPTIONING.isEmpty()
            || timeMillis - lastOptionTime <= OPTION_INTERVAL.toMillis()
            || timeMillis - lastWatchTime >= WATCHING_INTERVAL.toMillis()) {
            lastWatchTime = timeMillis;
            WATCHING_APPS.forEach(this::watch);
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



streampark-console/streampark-console-service/src/main/java/org/apache/streampark/console/core/watcher/SparkAppHttpWatcher.java [165:174]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void start() {
        Long timeMillis = System.currentTimeMillis();
        if (lastWatchTime == null
            || !OPTIONING.isEmpty()
            || timeMillis - lastOptionTime <= OPTION_INTERVAL.toMillis()
            || timeMillis - lastWatchTime >= WATCHING_INTERVAL.toMillis()) {
            lastWatchTime = timeMillis;
            WATCHING_APPS.forEach(this::watch);
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



