Skip to content

Commit

Permalink
hotfix: 디스코드 ID 배치 예외 처리 (#706)
Browse files Browse the repository at this point in the history
* hotfix: 이메일 정규식에 언더스코어를 허용하도록 수정 (#205)

* fix: 언더스코어 허용하도록 변경

* refactor: 테스트 접근제어자 제거

* hotfix: Basic Auth 환경변수 속성 이름 수정 (#260)

* fix: 환경변수 속성 이름 오타 수정

* refactor: Basic Auth 환경변수 이름 재수정

* hotfix: 학과 쿼리 메서드 수정 (#282)

* hotfix: spotless 적용 (#283)

style: spotless 적용

* hotfix: 소셜 로그인 리다이렉트 URI가 작동하지 않는 문제 수정 (#689)

fix: 추가 파라미터에서 리다이렉트 URI로 수정

* fix: 디스코드 id 배치 예외 처리

* fix: 로그 수정

---------

Co-authored-by: Jaehyun Ahn <[email protected]>
Co-authored-by: 이한비 <[email protected]>
  • Loading branch information
3 people authored Aug 28, 2024
1 parent 12519a9 commit 8b779f8
Showing 1 changed file with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,11 @@
import com.gdschongik.gdsc.global.util.DiscordUtil;
import java.util.List;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;

@Slf4j
@Service
@RequiredArgsConstructor
public class CommonDiscordService {
Expand Down Expand Up @@ -40,8 +42,12 @@ public void batchDiscordId(String currentDiscordUsername, RequirementStatus disc

discordSatisfiedMembers.forEach(member -> {
String discordUsername = member.getDiscordUsername();
String discordId = discordUtil.getMemberIdByUsername(discordUsername);
member.updateDiscordId(discordId);
try {
String discordId = discordUtil.getMemberIdByUsername(discordUsername);
member.updateDiscordId(discordId);
} catch (CustomException e) {
log.info("[CommonDiscordService] 디스코드 id 배치 실패: 사유 = {} memberId = {}", e.getMessage(), member.getId());
}
});
}
}

0 comments on commit 8b779f8

Please sign in to comment.