Skip to content

Commit

Permalink
test/Auto Scaling Group (#132)
Browse files Browse the repository at this point in the history
* 게시글 광고 표출

* HelloThere-122 CI/CD 설정 및 api 호출 url 변경

* HelloThere-122 CI/CD 설정 및 api 호출 url 변경

* HelloThere-122 CI/CD 설정 및 api 호출 url 변경

* HelloThere-122 CI/CD 설정 및 api 호출 url 변경

* HelloThere-125 appspec.yml파일과 deploy.sh 파일 추가

* HelloThere-125 appspec.yml파일과 deploy.sh 파일 추가

* HelloThere-127 CI/CD 테스트

* HelloThere-127 CI/CD 테스트

* HelloThere-127 CI/CD 테스트

* HelloThere-127 CI/CD 테스트

* HelloThere-127 CI/CD 테스트

* HelloThere-127 CI/CD 테스트

* HelloThere-127 CI/CD 테스트

* HelloThere-127 CI/CD 테스트

* HelloThere-127 CI/CD 테스트

* HelloThere-127 CI/CD 테스트

* HelloThere-127 CI/CD 테스트

* HelloThere-127 CI/CD 테스트

* HelloThere-129 CI/CD 테스트2

* HelloThere-129 CI/CD 테스트2

* HelloThere-129 CI/CD 테스트2

* HelloThere-129 CI/CD 테스트2

* HelloThere-129 CI/CD 테스트2

* HelloThere-129 CI/CD 테스트2

* HelloThere-129 CI/CD 테스트2

* HelloThere-129 CI/CD 테스트2

* HelloThere-129 CI/CD 테스트2

* HelloThere-129 CI/CD 테스트2

* HelloThere-129 CI/CD 테스트2

* HelloThere-129 CI/CD 테스트2

* HelloThere-129 CI/CD 테스트2

* HelloThere-129 CI/CD 테스트2

* HelloThere-129 CI/CD 테스트2

* HelloThere-129 CI/CD 테스트2

* HelloThere-129 CI/CD 테스트2

* HelloThere-129 CI/CD 테스트2

* HelloThere-129 CI/CD 테스트2

* HelloThere-129 CI/CD 테스트2

* HelloThere-129 CI/CD 테스트2

* HelloThere-129 CI/CD 테스트2

* HelloThere-129 CI/CD 테스트2

* HelloThere-129 CI/CD 테스트2

* HelloThere-131 Auto Scaling 그룹에 코드 배포가 잘 적용되는지 확인

* HelloThere-131 Auto Scaling 그룹에 코드 배포가 잘 적용되는지 확인

* HelloThere-131 Auto Scaling 그룹에 코드 배포가 잘 적용되는지 확인

* HelloThere-131 Auto Scaling 그룹에 코드 배포가 잘 적용되는지 확인

---------

Co-authored-by: songhaechan <[email protected]>
  • Loading branch information
gmlstjq123 and songhaechan authored Aug 21, 2023
1 parent 55586ae commit a91af67
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
@Slf4j
@Component
public class JwtProvider {
private static final long REFRESH_TOKEN_EXPIRE_TIME = 1 * 24 * 60 * 60 * 1000L; //refreshToken 유효기간 1일
private static final long ACCESS_TOKEN_EXPIRE_TIME = 1 * 60 * 60 * 1000L; //accessToken 유효기간 1시간
private static final long REFRESH_TOKEN_EXPIRE_TIME = 3 * 24 * 60 * 60 * 1000L; //refreshToken 유효기간 3일
private static final long ACCESS_TOKEN_EXPIRE_TIME = 12 * 60 * 60 * 1000L; //accessToken 유효기간 12시간

// private static final long REFRESH_TOKEN_EXPIRE_TIME = 60 * 1000L; //refreshToken 유효기간 1분, refrshToken 테스트를 위해 사용
// private static final long ACCESS_TOKEN_EXPIRE_TIME = 10 * 1000L; //유효기간 10초, refrshToken 테스트를 위해 사용
Expand Down
24 changes: 12 additions & 12 deletions src/main/java/com/example/hello_there/notice/NoticeService.java
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ public PostNoticeRes sendCommentNotification(Long commentId) {
createNotice(user, notice); // 알림 생성 및 저장

UserSetting userSetting = userSettingRepository.findByUserId(user.getId());
if(userSetting.isCommentCheck()) { // 해당 알림에 대한 UserSetting이 true인 경우
sendNotification(user, notice); // 푸시 알림 전송
}
// if(userSetting.isCommentCheck()) { // 해당 알림에 대한 UserSetting이 true인 경우
// sendNotification(user, notice); // 푸시 알림 전송
// }
return new PostNoticeRes(notice, comment.getBoard().getBoardType());
}

Expand All @@ -72,9 +72,9 @@ public PostNoticeRes sendRecommentNotification(Long commentId) {
createNotice(user, notice);

UserSetting userSetting = userSettingRepository.findByUserId(user.getId());
if(userSetting.isRecommentCheck()) {
sendNotification(user, notice);
}
// if(userSetting.isRecommentCheck()) {
// sendNotification(user, notice);
// }
return new PostNoticeRes(notice, comment.getBoard().getBoardType());
}

Expand All @@ -92,9 +92,9 @@ public PostNoticeRes sendBestBoardNotification(Long boardId) {
createNotice(user, notice);

UserSetting userSetting = userSettingRepository.findByUserId(user.getId());
if(userSetting.isBestBoardCheck()) {
sendNotification(user, notice);
}
// if(userSetting.isBestBoardCheck()) {
// sendNotification(user, notice);
// }
return new PostNoticeRes(notice, board.getBoardType());
}

Expand All @@ -118,9 +118,9 @@ public PostNoticeRes sendMessageNotification(Long messageId) {
for (User user : userList) {
createNotice(user, notice);
UserSetting userSetting = userSettingRepository.findByUserId(user.getId());
if(userSetting.isMessageCheck()) {
sendNotification(user, notice);
}
// if(userSetting.isMessageCheck()) {
// sendNotification(user, notice);
// }
}
return new PostNoticeRes(notice, null);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public class UserController {
/**
* ELB의 정상 동작을 확인하는 API
*/
@GetMapping("/healthcheck")
@GetMapping("/health-check")
public String healthcheck() {
return "OK";
}
Expand Down

0 comments on commit a91af67

Please sign in to comment.