Skip to content

Commit

Permalink
Fix: 배포 서버 시간 테스트
Browse files Browse the repository at this point in the history
  • Loading branch information
chaewon-io committed Apr 14, 2024
1 parent f6a2c86 commit fc7cd01
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public void cancelAppliedMyChallenge(String email, Long myChallengeId) {
public List<MyChallengeResponseDto> getMyChallengesListed(String email, ChallengeStatus status) {
Member member = getMemberByEmail(email);
List<MyChallenge> myChallengesListed;
ZonedDateTime todayStart = ZonedDateTime.now(ZoneId.of("GMT")).truncatedTo(ChronoUnit.DAYS).minusHours(9);
ZonedDateTime todayStart = ZonedDateTime.now(ZoneId.of("GMT")).truncatedTo(ChronoUnit.DAYS).plusHours(9);
log.info("----------------------------- todayStart : " + todayStart);

switch (status) {
Expand Down

0 comments on commit fc7cd01

Please sign in to comment.