Spaces:
Runtime error
Runtime error
Update worker_runpod.py
Browse files- worker_runpod.py +1 -0
worker_runpod.py
CHANGED
@@ -63,6 +63,7 @@ def download_image(url, download_dir="asset"):
|
|
63 |
f.write(chunk)
|
64 |
|
65 |
print(f"Image downloaded to {file_path}")
|
|
|
66 |
return file_path
|
67 |
else:
|
68 |
raise Exception(f"Failed to download image from {url}, status code: {response.status_code}")
|
|
|
63 |
f.write(chunk)
|
64 |
|
65 |
print(f"Image downloaded to {file_path}")
|
66 |
+
os.chmod(file_path, 0o777)
|
67 |
return file_path
|
68 |
else:
|
69 |
raise Exception(f"Failed to download image from {url}, status code: {response.status_code}")
|