Skip to content

Commit

Permalink
fix: 알림 누락 현상 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
ksk0605 committed Oct 24, 2024
1 parent b36e40e commit 071b074
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class NotificationSendEventHandler {
private final NotificationSender notificationSender;

@Async
@Transactional(readOnly = true, propagation = Propagation.REQUIRES_NEW)
@Transactional(propagation = Propagation.REQUIRES_NEW)
@TransactionalEventListener(classes = NotificationSendEvent.class, phase = TransactionPhase.AFTER_COMMIT)
public void handle(NotificationSendEvent event) {
List<Recipient> filteredRecipients = filterRecipientsBySubscription(event);
Expand Down

0 comments on commit 071b074

Please sign in to comment.