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
We use the zstd binary in some places instead of zstandard for some performance gains. However, this becomes an issue when the zstd package is not installed, or the binary location is not listed in PATH.
We use the
zstd
binary in some places instead ofzstandard
for some performance gains. However, this becomes an issue when thezstd
package is not installed, or the binary location is not listed inPATH
.Example of using the
zstd
binary through CLI:bugbug/bugbug/utils.py
Lines 244 to 248 in b6291dc
In this case, we should fallback to using
zstandard
API if we fail to compress usingzstdmt
becausezstd
is not installed.This will solve the following:
The text was updated successfully, but these errors were encountered: