feat/training_260202 #36

Merged
gina merged 4 commits from feat/training_260202 into develop 2026-02-11 18:51:01 +09:00
2 changed files with 2 additions and 4 deletions
Showing only changes of commit 207cc47f1b - Show all commits

View File

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

View File

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