[chore]: Bump github.com/minio/minio-go/v7 from 7.0.84 to 7.0.85 (#3772)

This commit is contained in:
dependabot[bot]
2025-02-10 15:30:29 +00:00
committed by GitHub
parent 576da4cf01
commit bb6d2f8ee8
6 changed files with 62 additions and 6 deletions

View File

@ -213,6 +213,14 @@ type RemoveObjectError struct {
Err error
}
func (err *RemoveObjectError) Error() string {
// This should never happen as we will have a non-nil error with no underlying error.
if err.Err == nil {
return "unexpected remove object error result"
}
return err.Err.Error()
}
// RemoveObjectResult - container of Multi Delete S3 API result
type RemoveObjectResult struct {
ObjectName string