Merge pull request '[KC-103] 추론 실행 배치 수정' (#227) from feat/infer_dev_260107 into develop

Reviewed-on: https://kamco.gitea.gs.dabeeo.com/dabeeo/kamco-dabeeo-backoffice/pulls/227
This commit is contained in:
2026-01-13 15:58:27 +09:00

View File

@@ -144,9 +144,8 @@ public class MapSheetLearnRepositoryImpl implements MapSheetLearnRepositoryCusto
return Optional.ofNullable( return Optional.ofNullable(
queryFactory queryFactory
.selectFrom(mapSheetLearnEntity) .selectFrom(mapSheetLearnEntity)
.where(mapSheetLearnEntity.id.eq(106L)) .where(mapSheetLearnEntity.status.eq(status))
// .where(mapSheetLearnEntity.status.eq(status)) .limit(1)
// .limit(1)
.fetchOne()); .fetchOne());
} }