We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 07447a0 + d493070 commit fbcda8bCopy full SHA for fbcda8b
1 file changed
nxc/protocols/nfs.py
@@ -366,7 +366,7 @@ def get_file(self):
366
curr_fh = mount_fh
367
for sub_path in remote_file_path.lstrip("/").split("/"):
368
# Update the UID for the next object and get the handle
369
- self.update_auth(mount_fh)
+ self.update_auth(curr_fh)
370
res = self.nfs3.lookup(curr_fh, sub_path, auth=self.auth)
371
372
# Check for a bad path
@@ -448,7 +448,7 @@ def put_file(self):
448
449
# If target dir is "" or "/" without filter we would get one item with [""]
450
for sub_path in list(filter(None, remote_dir_path.lstrip("/").split("/"))):
451
452
453
454
# If the path does not exist, create it
0 commit comments