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 58d3623 commit 1cf0181Copy full SHA for 1cf0181
refinery/__init__.py
@@ -252,6 +252,10 @@ def __monitor_task(self, upload_task_id: str) -> None:
252
pbar.update(progress)
253
pbar.set_description_str(desc=task_state, refresh=True)
254
if task_state == "DONE" or task_state == "FAILED":
255
+ if task_state == "DONE":
256
+ msg.good("Upload successful.")
257
+ else:
258
+ msg.fail("Upload failed. Please look into the UI notification center for more details.")
259
do_monitoring = False
260
if idx >= 100:
261
raise exceptions.FileImportError(
0 commit comments