diff options
author | babenko <babenko@yandex-team.com> | 2024-08-29 18:29:40 +0300 |
---|---|---|
committer | babenko <babenko@yandex-team.com> | 2024-08-29 18:53:40 +0300 |
commit | b1be2c47d998798f112fd0338702fbe79dea430e (patch) | |
tree | fc6c9358823bd13266453b7000b6530a1bb9badb | |
parent | cb84c4f96c84f08b0499dc598ced8c85b7d80b8a (diff) | |
download | ydb-b1be2c47d998798f112fd0338702fbe79dea430e.tar.gz |
YT-22593: Switch to std::string in ACLs
377b634e83ecc7bc6ad418afd6c4db77cb7c3a0a
-rw-r--r-- | yt/yt/client/security_client/acl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt/yt/client/security_client/acl.h b/yt/yt/client/security_client/acl.h index cbc1d6cb3d..28f2edd762 100644 --- a/yt/yt/client/security_client/acl.h +++ b/yt/yt/client/security_client/acl.h @@ -21,7 +21,7 @@ struct TSerializableAccessControlEntry NYTree::EPermissionSet Permissions; EAceInheritanceMode InheritanceMode = EAceInheritanceMode::ObjectAndDescendants; TString SubjectTagFilter; - std::optional<std::vector<TString>> Columns; + std::optional<std::vector<std::string>> Columns; std::optional<bool> Vital; TSerializableAccessControlEntry( |