실행 오류 수정

This commit is contained in:
2026-02-12 10:58:26 +09:00
parent c6e721aa37
commit c56c0ca605

View File

@@ -78,7 +78,7 @@ public class DockerTrainService {
logBuilder.append(line).append('\n'); logBuilder.append(line).append('\n');
} }
// 2) 🔥 epoch 감지 + DB 업데이트 // 2) epoch 감지 + DB 업데이트
Matcher m = epochPattern.matcher(line); Matcher m = epochPattern.matcher(line);
if (m.find()) { if (m.find()) {
int currentEpoch = Integer.parseInt(m.group(1)); int currentEpoch = Integer.parseInt(m.group(1));