Closed ThomasWaldmann closed 1 week ago
Attention: Patch coverage is 91.66667%
with 1 line
in your changes missing coverage. Please review.
Project coverage is 81.79%. Comparing base (
295f4e3
) to head (f7dea6e
). Report is 3 commits behind head on master.
Files with missing lines | Patch % | Lines |
---|---|---|
src/borg/archiver/repo_compress_cmd.py | 91.66% | 0 Missing and 1 partial :warning: |
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
Worst (but frequent) case here is that all or most of the chunks in the repo need to get recompressed, thus storing all chunk ids in a python list would need significant amounts of memory for large repositories.
We already have all chunk ids stored in cache.chunks, so we now just flag the ones needing re-compression by setting the F_COMPRESS flag (that does not need any additional memory).