-
Notifications
You must be signed in to change notification settings - Fork 0
[Fix/collecting daily stat] #78
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
Conversation
|
Warning Rate limit exceeded@ekgns33 has exceeded the limit for the number of commits or files that can be reviewed per hour. Please wait 7 minutes and 50 seconds before requesting another review. ⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. 📒 Files selected for processing (1)
WalkthroughThe changes update the equality check for date comparison in the record service to use Changes
Poem
Note 🎁 Summarized by CodeRabbit FreeYour organization is on the Free plan. CodeRabbit will generate a high-level summary and a walkthrough for each pull request. For a comprehensive line-by-line review, please upgrade your subscription to CodeRabbit Pro by visiting https://app.coderabbit.ai/login. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Join our Discord community for assistance with any issues or questions. 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
CodeRabbit Configuration File (
|
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.
Pull Request Overview
This pull request fixes an issue where the daily statistics were being calculated incorrectly due to an improper LocalDate comparison. The PR updates the expected values in the acceptance test and corrects the LocalDate comparison in the RecordFinder service.
Reviewed Changes
Copilot reviewed 2 out of 3 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| src/test/java/org/runimo/runimo/records/api/RecordAcceptanceTest.java | Updated expected statistic values and added a new check for daily stats. |
| src/main/java/org/runimo/runimo/records/service/RecordFinder.java | Changed LocalDate comparison from using "!=" to using ".equals" for proper equality checking. |
Files not reviewed (1)
- src/test/resources/sql/weekly_record_data.sql: Language not supported
4a62ac5 to
791742d
Compare
791742d to
db458c6
Compare
작업내역
LocalDate 비교과정에서
!=연산자 사용으로 잘못된 계산이 이뤄지고 있었습니다. 이를 수정했습니다.Summary by CodeRabbit
Bug Fixes
Tests