Skip to content

Commit

Permalink
common-event 날짜 업데이트 에러 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
bjh3311 committed Aug 5, 2024
1 parent 5c7a0e6 commit 89016cd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/newCar/event_page/service/EventService.java
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ private void updateQuiz(LocalDate startDate, long duration) {
startDate = startDate.plusDays(1L);
}

quizRepository.saveAll(quizList);
quizList.forEach(quizRepository::save);
//quizRepository.saveAll(quizList);
}
}

0 comments on commit 89016cd

Please sign in to comment.