X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/6e76e3322d66f609dabcd34c98cba34bd739e089..fdc9a9308c646d23ec50073833f141ceebf78613:/sdk/python/arvados/commands/run.py diff --git a/sdk/python/arvados/commands/run.py b/sdk/python/arvados/commands/run.py index 8df945a063..5c8bced513 100644 --- a/sdk/python/arvados/commands/run.py +++ b/sdk/python/arvados/commands/run.py @@ -101,7 +101,7 @@ def statfile(prefix, fn): return prefix+fn -def uploadfiles(files, api, dry_run=False, num_retries=0, project=None): +def uploadfiles(files, api, dry_run=False, num_retries=0, project=None, fnPattern="$(file %s/%s)"): # Find the smallest path prefix that includes all the files that need to be uploaded. # This starts at the root and iteratively removes common parent directory prefixes # until all file pathes no longer have a common parent. @@ -153,7 +153,7 @@ def uploadfiles(files, api, dry_run=False, num_retries=0, project=None): logger.info("Uploaded to %s", item["uuid"]) for c in files: - c.fn = "$(file %s/%s)" % (pdh, c.fn) + c.fn = fnPattern % (pdh, c.fn) os.chdir(orgdir) @@ -238,7 +238,7 @@ def main(arguments=None): files = [c for command in slots[1:] for c in command if isinstance(c, UploadFile)] if files: - uploadfiles(files, api, dry_run=args.dry_run, num_retries=args.num_retries, project=project) + uploadfiles(files, api, dry_run=args.dry_run, num_retries=args.retries, project=project) for i in xrange(1, len(slots)): slots[i] = [("%s%s" % (c.prefix, c.fn)) if isinstance(c, ArvFile) else c for c in slots[i]]