Skip to content

Commit

Permalink
fix acl
Browse files Browse the repository at this point in the history
  • Loading branch information
CodingPoeta committed Jan 7, 2025
1 parent b713490 commit 8cbef61
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/scripts/command/acl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ 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()
{
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()
Expand Down
1 change: 0 additions & 1 deletion sdk/python/juicefs/juicefs/juicefs.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 8cbef61

Please sign in to comment.