fix: missed progress in upload task

pull/4871/head
Andy Hsu 2023-07-29 17:03:30 +08:00
parent 7dbef7d559
commit e700ce15e5
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ func putAsTask(dstDirPath string, file *model.FileStream) error {
UploadTaskManager.Submit(task.WithCancelCtx(&task.Task[uint64]{
Name: fmt.Sprintf("upload %s to [%s](%s)", file.GetName(), storage.GetStorage().MountPath, dstDirActualPath),
Func: func(task *task.Task[uint64]) error {
return op.Put(task.Ctx, storage, dstDirActualPath, file, nil, true)
return op.Put(task.Ctx, storage, dstDirActualPath, file, task.SetProgress, true)
},
}))
return nil