Skip to content

Commit

Permalink
Fix mkdir_rec uri lookup.
Browse files Browse the repository at this point in the history
  • Loading branch information
riga committed Jan 27, 2025
1 parent 7dd42c8 commit 1108f05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion law/contrib/gfal/target.py
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ def mkdir(self, path, perm, base=None, silent=True, **kwargs):

@RemoteFileInterface.retry(uri_base_name=["mkdir_rec", "mkdir"])
def mkdir_rec(self, path, perm, base=None, silent=True, **kwargs):
uri = self.uri(path, base_name="mkdir", base=base)
uri = self.uri(path, base_name=["mkdir_rec", "mkdir"], base=base)
with self.context() as ctx:
try:
logger.debug("invoking gfal2 mkdir_rec({}, {})".format(uri, perm))
Expand Down

0 comments on commit 1108f05

Please sign in to comment.