Skip to content

Commit

Permalink
[hotfix] fix: ReportServiceImpl 내 Transactional 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
elive7 committed Jan 8, 2025
1 parent 14709cd commit a0b5e52
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import org.springframework.transaction.annotation.Transactional;

@RequiredArgsConstructor
@Transactional(readOnly = true)
@Transactional
@Service
public class ReportServiceImpl implements ReportService {

Expand All @@ -28,7 +28,7 @@ public class ReportServiceImpl implements ReportService {
private final RecordRepository recordRepository;
private final SlackService slackService;

@Transactional

@Override
@Synchronized
public void create(ReportCreate create) {
Expand Down

0 comments on commit a0b5e52

Please sign in to comment.