mirror of
https://github.com/minio/minio.git
synced 2025-01-11 23:13:23 -05:00
return NoSuchVersion if invalid version-id is specified (#11091)
This commit is contained in:
parent
c4f29d24da
commit
48191dd748
@ -28,6 +28,7 @@ import (
|
|||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
|
"github.com/google/uuid"
|
||||||
"github.com/gorilla/mux"
|
"github.com/gorilla/mux"
|
||||||
|
|
||||||
"github.com/minio/minio-go/v7/pkg/set"
|
"github.com/minio/minio-go/v7/pkg/set"
|
||||||
@ -433,6 +434,20 @@ func (api objectAPIHandlers) DeleteMultipleObjectsHandler(w http.ResponseWriter,
|
|||||||
}
|
}
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
if object.VersionID != "" && object.VersionID != nullVersionID {
|
||||||
|
if _, err := uuid.Parse(object.VersionID); err != nil {
|
||||||
|
logger.LogIf(ctx, fmt.Errorf("invalid version-id specified %w", err))
|
||||||
|
apiErr := errorCodes.ToAPIErr(ErrNoSuchVersion)
|
||||||
|
dErrs[index] = DeleteError{
|
||||||
|
Code: apiErr.Code,
|
||||||
|
Message: apiErr.Description,
|
||||||
|
Key: object.ObjectName,
|
||||||
|
VersionID: object.VersionID,
|
||||||
|
}
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if replicateDeletes || hasLockEnabled || hasLifecycleConfig {
|
if replicateDeletes || hasLockEnabled || hasLifecycleConfig {
|
||||||
goi, gerr = getObjectInfoFn(ctx, bucket, object.ObjectName, ObjectOptions{
|
goi, gerr = getObjectInfoFn(ctx, bucket, object.ObjectName, ObjectOptions{
|
||||||
VersionID: object.VersionID,
|
VersionID: object.VersionID,
|
||||||
|
Loading…
Reference in New Issue
Block a user