diff options
author | Rich Ercolani <[email protected]> | 2022-03-03 13:43:38 -0500 |
---|---|---|
committer | GitHub <[email protected]> | 2022-03-03 10:43:38 -0800 |
commit | 56fa4aa96eb3875f254e93eaef646ea20ba187f9 (patch) | |
tree | a0d2ba696a216371a2e2ae063920114fa09deb68 /contrib | |
parent | 29a0ffe7951367faeea58e348ee93e037acf56f8 (diff) |
Default to ON for compression
A simple change, but so many tests break with it,
and those are the majority of this.
Reviewed-by: George Melikov <[email protected]>
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: Rich Ercolani <[email protected]>
Closes #13078
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/pyzfs/libzfs_core/test/test_libzfs_core.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/pyzfs/libzfs_core/test/test_libzfs_core.py b/contrib/pyzfs/libzfs_core/test/test_libzfs_core.py index d949d88d5..2567f7ebf 100644 --- a/contrib/pyzfs/libzfs_core/test/test_libzfs_core.py +++ b/contrib/pyzfs/libzfs_core/test/test_libzfs_core.py @@ -4132,7 +4132,8 @@ class _TempPool(object): cachefile = 'none' self._zpool_create = [ 'zpool', 'create', '-o', 'cachefile=' + cachefile, - '-O', 'mountpoint=legacy', self._pool_name, self._pool_file_path] + '-O', 'mountpoint=legacy', '-O', 'compression=off', + self._pool_name, self._pool_file_path] try: os.ftruncate(fd, size) os.close(fd) |