Skip to content

Commit

Permalink
๐Ÿ”จ Refactor/#135 - ๐Ÿ”จ Refactor - Event Scheduling ์ฃผ๊ธฐ 1๋ถ„์œผ๋กœ ๋ณ€๊ฒฝ(ํ…Œ์ŠคํŠธ์šฉ)
Browse files Browse the repository at this point in the history
  • Loading branch information
dongkyeomjang committed Nov 23, 2024
1 parent c05c32b commit e5d50f5
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 @@ -93,8 +93,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 e5d50f5

Please sign in to comment.