From 86df0eac937a92daee429037fe4ef399cf475c72 Mon Sep 17 00:00:00 2001 From: Alex Vanin Date: Wed, 25 Aug 2021 14:11:07 +0300 Subject: [PATCH] [#333] v2/acl: Remove FilterObjectParent constant According to specification, well-known object related filter keys for extended ACL do not include `$Object:split.parent`. Signed-off-by: Alex Vanin --- v2/acl/filters.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/v2/acl/filters.go b/v2/acl/filters.go index 461d2b9..c1d8afe 100644 --- a/v2/acl/filters.go +++ b/v2/acl/filters.go @@ -30,7 +30,4 @@ const ( // FilterObjectHomomorphicHash is a filter key to "homomorphic_hash" field of the object header. FilterObjectHomomorphicHash = ObjectFilterPrefix + "homomorphicHash" - - // FilterObjectParent is a filter key to "split.parent" field of the object header. - FilterObjectParent = ObjectFilterPrefix + "split.parent" )