diff --git a/.github/scripts/command/acl.sh b/.github/scripts/command/acl.sh index 7ea39cb94a7c..b45d12fb7010 100755 --- a/.github/scripts/command/acl.sh +++ b/.github/scripts/command/acl.sh @@ -19,7 +19,7 @@ test_acl_with_kernel_check() prepare_test ./juicefs format $META_URL myjfs --enable-acl --trash-days 0 ./juicefs mount -d $META_URL /tmp/jfs - python3 .github/scripts/hypo/acl_test.py + python3 .github/scripts/hypo/fs_acl_test.py } test_acl_with_user_space_check() @@ -27,7 +27,7 @@ test_acl_with_user_space_check() prepare_test ./juicefs format $META_URL myjfs --enable-acl --trash-days 0 ./juicefs mount -d $META_URL /tmp/jfs --non-default-permission - python3 .github/scripts/hypo/acl_test.py + python3 .github/scripts/hypo/fs_acl_test.py } test_modify_acl_config() diff --git a/sdk/python/juicefs/juicefs/juicefs.py b/sdk/python/juicefs/juicefs/juicefs.py index f5dc17252858..e34bc35630b5 100644 --- a/sdk/python/juicefs/juicefs/juicefs.py +++ b/sdk/python/juicefs/juicefs/juicefs.py @@ -222,7 +222,6 @@ def mkdir(self, path, mode=0o777): def makedirs(self, path, mode=0o777): """Create a directory and all its parent components if they do not exist.""" - print("makedirs: ", path, "--: ", mode, "--: ", self.umask) self.lib.jfs_mkdirAll(c_int64(_tid()), self.h, _bin(path), c_uint16(mode&0o777), c_uint16(self.umask)) def rmdir(self, path):