You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Expands the existing compression regex to match compression level [0-9]{1,2} instead of just [0,9]. This allows users to use compression levels higher than 9, like zstd -c -10
There were 5 tabs in the file that was otherwise formatted with spaces- it fixes that
@HaleTom I believe --long is not actually required for --adapt; the wording on the man page is unfortunately just confusing- it is saying "you may combine this with --long". What it requires is non-single threaded mode; you can check this with cat /dev/zero | zstd --adapt --single-thread and see it spits back an error but cat /dev/zero | zstd --adapt -v > /dev/null works, as you can see via the -v.
This PR does not support --long though, as it's a separate feature. I'm fine with either PR being merged depending on if @digint is fine with --long or not.
@digint Is there anything I can do to get this merged?
I really hope to get some time next week to work on btrbk, and especially also to look at this MR (and @HaleTom 's).
I'm afraid there's so much going on currently, I can't promise anything right now...
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR fixes:
ssh_filter_btrbk.shto allowstream_compresswith adaptive compression #600 by allowing--adaptto be whitelisted forzstdinstead of a specified compression level[0-9]{1,2}instead of just[0,9]. This allows users to use compression levels higher than 9, likezstd -c -10