Skip to content

Commit

Permalink
Replace lz4c with lz4
Browse files Browse the repository at this point in the history
  • Loading branch information
thevar1able authored Nov 18, 2024
1 parent ffacc10 commit b6cbdae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zfs/replicate/compress/command.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
def command(compression: Compression) -> Tuple[str, str]:
"""Compress and decompress command strings for compression."""
if compression == Compression.LZ4:
return ("/usr/bin/env - lz4c | ", "/usr/bin/env - lz4c -d | ")
return ("/usr/bin/env - lz4 | ", "/usr/bin/env - lz4 -d | ")

if compression == Compression.OFF:
return ("", "")
Expand Down

0 comments on commit b6cbdae

Please sign in to comment.