From a4cef24e99b0ddd990e749fdbe1059c72ef01594 Mon Sep 17 00:00:00 2001 From: kimyu0218 Date: Sun, 10 Nov 2024 23:58:30 +0900 Subject: [PATCH] =?UTF-8?q?remove:=20=EB=B6=88=ED=95=84=EC=9A=94=ED=95=9C?= =?UTF-8?q?=20=EC=96=B4=EB=85=B8=ED=85=8C=EC=9D=B4=EC=85=98=20=EC=82=AD?= =?UTF-8?q?=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../goalpanzi/schedule/MissionCancellationWarningPushJob.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/main/java/com/nexters/goalpanzi/schedule/MissionCancellationWarningPushJob.java b/src/main/java/com/nexters/goalpanzi/schedule/MissionCancellationWarningPushJob.java index 9a8b822d..60186c31 100644 --- a/src/main/java/com/nexters/goalpanzi/schedule/MissionCancellationWarningPushJob.java +++ b/src/main/java/com/nexters/goalpanzi/schedule/MissionCancellationWarningPushJob.java @@ -5,7 +5,6 @@ import lombok.extern.slf4j.Slf4j; import org.quartz.*; import org.springframework.stereotype.Component; -import org.springframework.transaction.annotation.Transactional; @Slf4j @RequiredArgsConstructor @@ -23,7 +22,6 @@ protected ScheduleBuilder getScheduleBuilder() { } @Override - @Transactional protected void executeInternal(JobExecutionContext context) throws JobExecutionException { missionMemberService.sendCancellationWarningPushMessage(); }