Skip to content

Commit

Permalink
🎨 Backend part of UX improvements (#6297)
Browse files Browse the repository at this point in the history
  • Loading branch information
sanderegg authored Sep 3, 2024
1 parent cc3df87 commit dc0d182
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions services/storage/src/simcore_service_storage/s3_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,7 @@ def _update(self) -> None:
update_task_progress(
self.task_progress,
f"{self.task_progress_message_prefix} - "
f"{parse_obj_as(ByteSize,self._total_bytes_copied).human_readable()}"
f"/{self.total_bytes_to_transfer.human_readable()}]",
f"{self.total_bytes_to_transfer.human_readable()}",
ProgressPercent(
min(self._total_bytes_copied, self.total_bytes_to_transfer)
/ (self.total_bytes_to_transfer or 1)
Expand Down

0 comments on commit dc0d182

Please sign in to comment.