This commit is contained in:
Liang Ding 2022-07-05 23:40:18 +08:00
parent 63923c4cc0
commit 14ed28a069
No known key found for this signature in database
GPG key ID: 136F30F901A2231D
3 changed files with 5 additions and 3 deletions

View file

@ -213,6 +213,7 @@ func DownloadCloudSnapshot(tag, id string) (err error) {
}
util.LogInfof("downloaded snapshot [%s], files [%d] chunks [%d], received bytes [%d]", tag, downloadFileCount, downloadChunkCount, downloadBytes)
util.PushClearProgress()
// TODO push msg
return
}
@ -238,6 +239,7 @@ func UploadCloudSnapshot(tag, id string) (err error) {
}
util.LogInfof("uploaded snapshot [%s], files [%d] chunks [%d], sent bytes [%d]", tag, uploadFileCount, uploadChunkCount, uploadBytes)
util.PushClearProgress()
// TODO push msg
return
}