We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents da3105f + d1899c1 commit a34f4a1Copy full SHA for a34f4a1
src/borg/compress.pyx
@@ -613,11 +613,7 @@ class ObfuscateSize(CompressorBase):
613
614
padded_size = (compr_size + bitMask) & ~bitMask # Apply rounding
615
616
- # Ensure max 12% overhead
617
- max_allowed = int(compr_size * 1.12)
618
- final_size = min(padded_size, max_allowed)
619
-
620
- return final_size - compr_size # Return only the additional padding size
+ return padded_size - compr_size # Return only the additional padding size
621
622
# Maps valid compressor names to their class
623
COMPRESSOR_TABLE = {
0 commit comments