Skip to content

Commit

Permalink
refactor: 트랜잭션 조회 명시 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
Kimprodp committed Aug 1, 2024
1 parent 7031ec1 commit e3783d9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ private void saveReviewKeywords(List<Long> selectedKeywordIds, long savedReviewI
reviewKeywordRepository.saveAll(reviewKeywords);
}

@Transactional
@Transactional(readOnly = true)
public ReviewSetupResponse findReviewCreationSetup(String reviewRequestCode) {
ReviewGroup reviewGroup = reviewGroupRepository.findByReviewRequestCode(reviewRequestCode)
.orElseThrow(InvalidReviewRequestCodeException::new);
Expand Down

0 comments on commit e3783d9

Please sign in to comment.