Skip to content

Commit f3b634f

Browse files
authored
hotfix: v3.2.1 (#273)
* fix: Top3 투표 목록 조회 서비스에서 트랜잭션 readonly=true 옵션 제거 - 투표 결과 조회 시점에 vote_result 테이블 쓰기 작업이 발생해 SQL 오류 발생 해결 목적 * chore: v3.2.1 명시
1 parent d1354be commit f3b634f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88
}
99

1010
group = 'com.moa'
11-
version = 'v3.2.0'
11+
version = 'v3.2.1'
1212

1313
java {
1414
toolchain {

src/main/java/com/moa/moa_server/domain/ranking/service/RankingService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public class RankingService {
4040
private final GroupRepository groupRepository;
4141
private final GroupMemberRepository groupMemberRepository;
4242

43-
@Transactional(readOnly = true)
43+
@Transactional
4444
public TopVoteResponse getTopVotes(Long userId, Long groupId) {
4545
// 유저/그룹/멤버십 검증
4646
User user = validateAndGetuser(userId);

0 commit comments

Comments
 (0)