-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BE] 3.02 주식차트 정보 기능 구현 수정 #6 #47
Conversation
🟢 헉 코드가 잘못 됐었나보네요! 안그래도 오늘 발표한 이후로 계속 서버 켜놨는데 간헐적으로 에러가 발생하더라구요. 발생하는 부분이 딱 시은님께서 적어두신 Cron 쪽 코드였는데 이런 문제가 있었네요 ㅠㅠ 수정 감사합니다!!! |
description: '실시간 차트', | ||
type: [StockIndexListChartElementDto], | ||
}) | ||
chart: StockIndexListChartElementDto[]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🟢 여기가 어제 그룹 리뷰 때 말한 잘못 만들었다고 수정하신다고 하신 부분인가요?! 어떤 식으로 변경됐는지 나중에 한번 설명 기대하겠습니다ㅎㅎ
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
네넵 이 부분이랑 소켓 이벤트 발생시키고 response 전달하는 부분도 수정했습니다!
); | ||
) | ||
.catch((err) => { | ||
throw new InternalServerErrorException( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🟢 저도 에러 처리를 그냥 log만 찍어놓듯이 작성해놨는데 이렇게 수정해봐야겠어요!
고생하셨습니다! |
아맞다 코파일럿 완전 까먹고있었어요ㅋㅋㅋㅋㅋ 다음주에는 해봐야겠네용 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
수고하셨습니다!
✅ 주요 작업
💭 고민과 해결과정
throw new Error()
를 통해 예외를 발생시키기만 하고 다른 처리가 없었는데, nest에서 제공하는 HTTP Exception이 존재한다는 것을 알게 되었다. 아래와 같은 예외를 발생시키면 응답이 HTTP 코드로 오게 된다.data.expires_in
을 활용한 로직을data.access_token_token_expires
로 수정해 해결하였다.