Skip to content

Commit

Permalink
Merge pull request #193 from Team-Capple/feat/#191/testflightApnsSetting
Browse files Browse the repository at this point in the history
[FEAT] 릴리즈 서버 연결 APNs 서버 구성 변경
  • Loading branch information
jaewonLeeKOR authored Sep 30, 2024
2 parents e30b3ab + d34a73c commit e94fd29
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion config
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public <T> Boolean sendApns(T request, List<String> deviceToken) {
.retrieve()
.bodyToMono(Void.class)
.subscribe();
log.info("APNs 전송 거절 발생");
log.error("APNs 전송 거절 발생");
})
.doOnError(e -> { // 에러 발생 시 보조 채널로 재시도
tmpSubWebClient
Expand All @@ -83,7 +83,7 @@ public <T> Boolean sendApns(T request, List<String> deviceToken) {
.retrieve()
.bodyToMono(Void.class)
.subscribe();
log.error("APNs 전송 중 오류 발생", e);
log.warn("APNs 전송 중 오류 발생", e);
})
.subscribe();
});
Expand Down

0 comments on commit e94fd29

Please sign in to comment.