Skip to content

Commit

Permalink
๐Ÿ”จ Refactor/#190 - ํ…Œ์ŠคํŠธ์šฉ ์ด๋ฒคํŠธ ์Šค์ผ€์ค„๋ง ์ฃผ๊ธฐ 1๋ถ„์œผ๋กœ ๋‹จ์ถ• (#191)
Browse files Browse the repository at this point in the history
  • Loading branch information
dongkyeomjang authored Dec 4, 2024
1 parent 1905cff commit c09d34d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ public void execute(Long eventId) {
applicationEventPublisher.publishEvent(
scheduledEventJobService.createScheduledJob(
newEvent.getId(),
newEvent.getEndDate().plusDays(1).atStartOfDay()
// LocalDateTime.now().plusMinutes(1) // ํ…Œ์ŠคํŠธ์šฉ 1๋ถ„ ๋’ค
// newEvent.getEndDate().plusDays(1).atStartOfDay()
LocalDateTime.now().plusMinutes(1) // ํ…Œ์ŠคํŠธ์šฉ 1๋ถ„ ๋’ค
)
);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,8 @@ public void execute(MultipartFile logo,
applicationEventPublisher.publishEvent(
scheduledEventJobService.createScheduledJob(
event.getId(),
event.getEndDate().plusDays(1).atStartOfDay()
// LocalDateTime.now().plusMinutes(1) // ํ…Œ์ŠคํŠธ์šฉ 1๋ถ„ ๋’ค
// event.getEndDate().plusDays(1).atStartOfDay()
LocalDateTime.now().plusMinutes(1) // ํ…Œ์ŠคํŠธ์šฉ 1๋ถ„ ๋’ค
)
);

Expand Down

0 comments on commit c09d34d

Please sign in to comment.