Skip to content

Commit

Permalink
Merge pull request #39 from vmware-tanzu/main
Browse files Browse the repository at this point in the history
Fork Sync: Update from parent repository
  • Loading branch information
github-actions[bot] authored Nov 2, 2022
2 parents 65f08c0 + 345abb3 commit 0a164ea
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions changelogs/unreleased/5534-qiuming-best
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
fix restic backup progress error
4 changes: 2 additions & 2 deletions pkg/restic/exec_commands.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ func RunBackup(backupCmd *Command, log logrus.FieldLogger, updater uploader.Prog
// caller with the progress
if stat.BytesDone != 0 {
updater.UpdateProgress(&uploader.UploaderProgress{
TotalBytes: stat.TotalBytesProcessed,
BytesDone: stat.TotalBytesProcessed,
TotalBytes: stat.TotalBytes,
BytesDone: stat.BytesDone,
})
}
}
Expand Down

1 comment on commit 0a164ea

@vercel
Copy link

@vercel vercel bot commented on 0a164ea Nov 2, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

velero – ./

velero.vercel.app
velero.tig.pw
velero-git-main-kaovilai.vercel.app
velero-kaovilai.vercel.app

Please sign in to comment.