We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc8e231 commit d908df4Copy full SHA for d908df4
function_app.py
@@ -91,9 +91,10 @@ def upload_with_azcopy(local_dir):
91
dest_url = os.environ.get('DZI_UPLOAD_DEST_URL')
92
cmd = [
93
"azcopy", "copy",
94
- os.path.join(local_dir, "*"),
+ f"{local_dir}/*",
95
dest_url,
96
- "--recursive=true"
+ "--recursive=true",
97
+ "--log-level=DEBUG"
98
]
99
logger.info(f"AzCopy command: azcopy copy {cmd[2]} {dest_url} --recursive=true (using SAS token)")
100
result = subprocess.run(cmd, capture_output=True, text=True)
0 commit comments