Skip to content

Commit

Permalink
err not found
Browse files Browse the repository at this point in the history
  • Loading branch information
ItamarYuran committed Jan 23, 2025
1 parent ea30b22 commit 62f9e44
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkg/gateway/operations/listobjects.go
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,9 @@ func handleListMultipartUploads(w http.ResponseWriter, req *http.Request, o *Rep
continue
}
multiPart, err := o.MultipartTracker.Get(req.Context(), *upload.UploadId)
if err != nil {
if errors.Is(err, graveler.ErrNotFound) {
continue
} else if err != nil {
fmt.Println("id: ", *upload.UploadId)
fmt.Println("err: ", err)
o.Log(req).WithError(err).Error("could not read multipart record")
Expand Down

0 comments on commit 62f9e44

Please sign in to comment.