-
Notifications
You must be signed in to change notification settings - Fork 9
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
test(uat): log rotation with minimum log level setting #215
Conversation
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## main #215 +/- ##
==========================================
+ Coverage 84.79% 85.24% +0.45%
==========================================
Files 13 13
Lines 1052 1057 +5
Branches 109 110 +1
==========================================
+ Hits 892 901 +9
+ Misses 100 97 -3
+ Partials 60 59 -1
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
Unit Tests Coverage Report
Minimum allowed coverage is Generated by 🐒 cobertura-action against e6cb9fa |
Integration Tests Coverage Report
Minimum allowed coverage is Generated by 🐒 cobertura-action against e6cb9fa |
d31eeb9
to
d7b14d6
Compare
List<LogFile> deletableFiles = group.getProcessedLogFiles(); | ||
deletableFiles.addAll(group.getLogFiles()); |
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.
lazy question, group.getLogFiles
distinct from group.getProcessedLogFiles
? seems like we dont want duplicates in delteableFiles
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.
yes, they're distinct. Even if we duplicate it won't matter as deletion is safe if the file is deleted already.
Issue #, if available:
Description of changes:
Why is this change necessary:
How was this change tested:
Any additional information or context required to review the change:
Checklist:
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.