리커버리 수정 테스트,,

This commit is contained in:
2026-03-04 00:30:17 +09:00
parent c5e03f7ca8
commit 0daaa1c8cb
2 changed files with 2 additions and 1 deletions

View File

@@ -443,7 +443,7 @@ public class ModelTrainMngCoreService {
.orElseThrow(() -> new IllegalArgumentException("Model not found: " + modelId));
master.setStatusCd(TrainStatusType.STOPPED.getId());
master.setStep2State(TrainStatusType.STOPPED.getId());
master.setStep1State(TrainStatusType.STOPPED.getId());
master.setLastError(errorMessage);
master.setUpdatedUid(userUtil.getId());
master.setUpdatedDttm(ZonedDateTime.now());

View File

@@ -157,6 +157,7 @@ public class JobRecoveryOnStartupService {
modelTrainJobCoreService.markPaused(
job.getId(), modelId, "AUTO_KILLED_ON_SERVER_RESTART");
log.info("job = {}", job);
markStepStopByJobType(job, "AUTO_KILLED_ON_SERVER_RESTART");
} catch (Exception e) {