[KC-108] 배치 local은 실행안되게 방지

This commit is contained in:
2026-01-13 10:16:37 +09:00
parent 9570e4cbd9
commit ec5861eb4e

View File

@@ -53,6 +53,10 @@ public class MapSheetInferenceJobService {
@Transactional
public void runBatch() {
if ("local".equalsIgnoreCase(profile)) {
return;
}
try {
InferenceBatchSheet batchSheet =
inferenceResultCoreService.getInferenceResultByStatus(Status.IN_PROGRESS.getId());