forked from TrueCloudLab/frostfs-s3-gw
[#619] Filter system metadata
Signed-off-by: Angira Kekteeva <kira@nspcc.ru>
This commit is contained in:
parent
4380406602
commit
4483c6f57a
2 changed files with 22 additions and 10 deletions
|
@ -613,7 +613,8 @@ func (n *layer) getAllObjectsVersions(ctx context.Context, bkt *data.BucketInfo,
|
|||
}
|
||||
|
||||
func IsSystemHeader(key string) bool {
|
||||
return strings.HasPrefix(key, "S3-")
|
||||
_, ok := api.SystemMetadata[key]
|
||||
return ok || strings.HasPrefix(key, api.NeoFSSystemMetadataPrefix)
|
||||
}
|
||||
|
||||
func shouldSkip(node *data.NodeVersion, p allObjectParams, existed map[string]struct{}) bool {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue