Skip to content
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

Merged
merged 2 commits into from
Nov 5, 2024

Conversation

wonjunYou
Copy link
Contributor

@wonjunYou wonjunYou commented Nov 5, 2024

1. 📄 Summary

  • 스프링 프로파일 지정을 위한 환경변수 주입
  • 크롤링 로직 내 로그 일부 수정

Summary by CodeRabbit

  • 버그 수정

    • 구인 게시물 수 파싱 개선: 구인 게시물 수를 정확하게 추출하기 위해 문자열에서 쉼표를 제거하는 기능 추가.
    • 로깅 개선: 경고 로그 메시지의 일관성과 명확성을 높임.
  • 작업

    • 프로덕션 서버 배포 워크플로우 수정: Docker 실행 명령어에 SPRING_PROFILES_ACTIVE 환경 변수를 추가하여 프로덕션 환경 설정.

@wonjunYou wonjunYou self-assigned this Nov 5, 2024
Copy link

coderabbitai bot commented Nov 5, 2024

Walkthrough

이 풀 리퀘스트에서는 프로덕션 서버 배포를 위한 워크플로우 파일과 WorknetCrawler 객체의 수정이 포함되어 있습니다. .github/workflows/prod-server-deployer.yaml 파일에서는 Docker 컨테이너 실행 명령에 SPRING_PROFILES_ACTIVE 환경 변수를 prod로 설정하는 변경이 이루어졌습니다. WorknetCrawler.kt 파일에서는 구직 게시물 수 파싱 개선과 로깅 명확성을 높이기 위한 여러 수정이 포함되었습니다.

Changes

파일 경로 변경 요약
.github/workflows/prod-server-deployer.yaml Docker 실행 명령에 -e SPRING_PROFILES_ACTIVE=prod 환경 변수를 추가하여 프로덕션 환경 설정을 반영.
idle-batch/src/main/kotlin/com/swm/idle/batch/util/WorknetCrawler.kt 구직 게시물 수 파싱 개선, 로깅 메시지 일관성 및 명확성 향상, run 메서드의 오류 처리 약간 개선.

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?

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

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)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link

sonarqubecloud bot commented Nov 5, 2024

Copy link

@coderabbitai coderabbitai bot left a 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: 로깅 구문을 개선할 수 있습니다.

현재 구현에서 몇 가지 개선 사항을 제안드립니다:

  1. 문자열 연결 대신 문자열 템플릿 사용
  2. warn 레벨 대신 info 레벨 사용 (경고 상황이 아님)

다음과 같이 수정하는 것을 추천드립니다:

-        logger.warn { "===== 크롤링 페이지 수 " + pageCount }
+        logger.info { "===== 크롤링 페이지 수: $pageCount" }
📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between 98b7779 and 43ad000.

📒 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: 숫자 파싱 로직이 개선되었습니다.

쉼표가 포함된 문자열을 정수로 변환하는 처리가 추가되어 크롤링 안정성이 향상되었습니다.

@wonjunYou wonjunYou merged commit 4464f6b into develop Nov 5, 2024
4 checks passed
@wonjunYou wonjunYou deleted the refactor/IDLE-496 branch November 5, 2024 05:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant