-
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
[IDLE-496] 스프링 프로파일 지정을 위한 환경변수 주입 #229
Conversation
Walkthrough이 풀 리퀘스트에서는 프로덕션 서버 배포를 위한 워크플로우 파일과 Changes
Possibly related PRs
Suggested labels
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
Documentation and Community
|
Quality Gate passedIssues Measures |
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.
Actionable comments posted: 0
🧹 Outside diff range and nitpick comments (2)
.github/workflows/prod-server-deployer.yaml (1)
96-98
: Docker 실행 명령에 Spring 프로파일 환경변수가 올바르게 추가되었습니다.프로덕션 환경에서 Spring 프로파일을 명시적으로 지정하는 것은 좋은 방법입니다. 환경변수를 통한 주입이 깔끔하게 구현되었습니다.
README나 배포 문서에 이 환경변수 설정에 대한 내용을 추가하는 것이 좋을 것 같습니다. 다른 개발자들이 로컬 환경에서 테스트할 때 참고할 수 있을 것입니다.
예시 문서 내용:
## 환경 설정 ### Spring 프로파일 - 프로덕션 환경: `SPRING_PROFILES_ACTIVE=prod` - 로컬 개발 환경: `SPRING_PROFILES_ACTIVE=local`idle-batch/src/main/kotlin/com/swm/idle/batch/util/WorknetCrawler.kt (1)
90-90
: 로깅 구문을 개선할 수 있습니다.현재 구현에서 몇 가지 개선 사항을 제안드립니다:
- 문자열 연결 대신 문자열 템플릿 사용
- warn 레벨 대신 info 레벨 사용 (경고 상황이 아님)
다음과 같이 수정하는 것을 추천드립니다:
- logger.warn { "===== 크롤링 페이지 수 " + pageCount } + logger.info { "===== 크롤링 페이지 수: $pageCount" }
📜 Review details
Configuration used: .coderabbit.yaml
Review profile: CHILL
📒 Files selected for processing (2)
.github/workflows/prod-server-deployer.yaml
(1 hunks)idle-batch/src/main/kotlin/com/swm/idle/batch/util/WorknetCrawler.kt
(2 hunks)
🔇 Additional comments (1)
idle-batch/src/main/kotlin/com/swm/idle/batch/util/WorknetCrawler.kt (1)
80-80
: 숫자 파싱 로직이 개선되었습니다.
쉼표가 포함된 문자열을 정수로 변환하는 처리가 추가되어 크롤링 안정성이 향상되었습니다.
1. 📄 Summary
Summary by CodeRabbit
버그 수정
작업
SPRING_PROFILES_ACTIVE
환경 변수를 추가하여 프로덕션 환경 설정.