We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e68cca7 commit 8f3323dCopy full SHA for 8f3323d
comfy_cli/file_utils.py
@@ -117,7 +117,7 @@ def zip_files(zip_filename):
117
def upload_file_to_signed_url(signed_url: str, file_path: str):
118
try:
119
with open(file_path, "rb") as f:
120
- headers = {"Content-Type": "application/gzip"}
+ headers = {"Content-Type": "application/zip"}
121
response = requests.put(signed_url, data=f, headers=headers)
122
123
# Simple success check
0 commit comments