Skip to content

Commit

Permalink
release: 0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
devxb committed Jan 30, 2024
1 parent 3c2f786 commit e1ae2e8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ public class MeetingAlertPublisher {
@Scheduled(cron = EVERY_ONE_MINUTES)
public void alertMeeting() {
System.out.println(">>> alertMeeting()");
var alertStart = LocalDateTime.now().plusMinutes(5);
var alertStart = LocalDateTime.now().plusMinutes(5).withNano(0).withSecond(0);
System.out.println(">>> alertStart " + alertStart);
var alertEnd = alertStart.plusMinutes(1);
var alertEnd = alertStart.plusMinutes(1).withNano(0).withSecond(0);
System.out.println(">>> alertEnd " + alertEnd);
var alertTargets = meetingRepository.findAlertMeetings(alertStart, alertEnd);
alertTargets.forEach(System.out::println);
Expand Down

0 comments on commit e1ae2e8

Please sign in to comment.