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 74885a2 commit 1bf5501Copy full SHA for 1bf5501
roboflow/core/workspace.py
@@ -619,7 +619,13 @@ def _upload_zip(
619
try:
620
res.raise_for_status()
621
except Exception as e:
622
- print(f"An error occured when getting the model deployment URL: {e}")
+ error_message = str(e)
623
+ status_code = str(res.status_code)
624
+
625
+ print("\n\033[91m❌ ERROR\033[0m: Failed to get model deployment URL")
626
+ print("\033[93mDetails\033[0m:", error_message)
627
+ print("\033[93mStatus\033[0m:", status_code)
628
+ print(f"\033[93mResponse\033[0m:\n{res.text}\n")
629
return
630
631
# Upload the model to the signed URL
0 commit comments