스케줄 주석

This commit is contained in:
2026-02-11 18:50:43 +09:00
parent b6338bce8e
commit 207cc47f1b
2 changed files with 2 additions and 4 deletions

View File

@@ -17,7 +17,6 @@ import org.apache.commons.csv.CSVFormat;
import org.apache.commons.csv.CSVParser;
import org.apache.commons.csv.CSVRecord;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Service;
@Slf4j
@@ -39,7 +38,7 @@ public class ModelTestMetricsJobService {
return "local".equalsIgnoreCase(profile);
}
@Scheduled(cron = "0 * * * * *")
// @Scheduled(cron = "0 * * * * *")
public void findTestValidMetricCsvFiles() {
// if (isLocalProfile()) {
// return;

View File

@@ -17,7 +17,6 @@ import org.apache.commons.csv.CSVFormat;
import org.apache.commons.csv.CSVParser;
import org.apache.commons.csv.CSVRecord;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Service;
@Slf4j
@@ -39,7 +38,7 @@ public class ModelTrainMetricsJobService {
return "local".equalsIgnoreCase(profile);
}
@Scheduled(cron = "0 0/5 * * * *")
// @Scheduled(cron = "0 0/5 * * * *")
public void findTrainValidMetricCsvFiles() {
if (isLocalProfile()) {
return;