diff options
author | mokhotskii <mokhotskii@yandex-team.ru> | 2022-03-29 10:14:42 +0300 |
---|---|---|
committer | mokhotskii <mokhotskii@yandex-team.ru> | 2022-03-29 10:14:42 +0300 |
commit | 4fb0628bca3df142c9b16f42644d845d6a5081c6 (patch) | |
tree | c016eda028ea8baf6c62db7928805091e152c095 | |
parent | 96ff7ceab9fa4b72602dbcf85130ccc98ca72f59 (diff) | |
download | ydb-4fb0628bca3df142c9b16f42644d845d6a5081c6.tar.gz |
LOGBROKER-7395 Fix typo in YDS permission name
Fix typo in YDS permission name
ref:e554de111d72256588d8eab1a5688e476b6f1aa8
-rw-r--r-- | ydb/services/datastreams/grpc_service.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ydb/services/datastreams/grpc_service.cpp b/ydb/services/datastreams/grpc_service.cpp index be666ca3cd..30ade6dad4 100644 --- a/ydb/services/datastreams/grpc_service.cpp +++ b/ydb/services/datastreams/grpc_service.cpp @@ -14,9 +14,9 @@ using namespace NKikimr; void YdsProcessAttr(const TSchemeBoardEvents::TDescribeSchemeResult& schemeData, NGRpcService::ICheckerIface* checker) { static const std::vector<TString> allowedAttributes = {"folder_id", "service_account_id", "database_id"}; - //full list of permissions for compatility. remove old permissions later. + //full list of permissions for compatibility. remove old permissions later. static const TVector<TString> permissions = { - "yds.streams.write", + "ydb.streams.write", "ydb.databases.list", "ydb.databases.create", "ydb.databases.connect" |