Commit 36b3b524 authored by Akshay Bharambe's avatar Akshay Bharambe
Browse files

Fix: Required Error type not set in case of delete operation

1. Fix: Required Error type not set in case of delete operation
parent f5668c05
Branches
Tags
2 merge requests!134Mep release271219,!133Add: Asset FDB and merged bucket type
Showing with 1 addition and 1 deletion
......@@ -1055,7 +1055,7 @@ func deleteDataFromInFileIndexBucket(fdbPath string, bucket *Bucket, paths []str
continue
}
if err != nil {
errList = append(errList, errormdl.Wrap("fail to delete records: "+err.Error()))
errList = append(errList, err)
continue
}
dataDeletedFromPath = append(dataDeletedFromPath, filePath)
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment