This is an automated email from the ASF dual-hosted git repository. adar pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/kudu.git
commit d38c47a693b8455b731e84d48f66658f8dcd1e5f Author: Andrew Wong <[email protected]> AuthorDate: Wed May 15 18:07:45 2019 -0700 authz: mark --trusted_user_acl as non-experimental This is a follow-up to b03411c and 8005afc, wherein other authorization flags were marked non-experimental. This patch marks --trusted_user_acl as "sensitive" to match other ACLs. I opted to not mark it "stable" just yet (the other ACL flags are stable), since it's still a relatively young flag. Change-Id: I828688edc574a828add50c2ad8b397a2edb070c4 Reviewed-on: http://gerrit.cloudera.org:8080/13351 Tested-by: Kudu Jenkins Reviewed-by: Alexey Serbin <[email protected]> Reviewed-by: Hao Hao <[email protected]> --- src/kudu/master/authz_provider.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kudu/master/authz_provider.cc b/src/kudu/master/authz_provider.cc index 72aa092..d2b6848 100644 --- a/src/kudu/master/authz_provider.cc +++ b/src/kudu/master/authz_provider.cc @@ -32,7 +32,7 @@ DEFINE_string(trusted_user_acl, "", "Comma-separated list of trusted users who may access the cluster " "without being authorized against fine-grained permissions."); -TAG_FLAG(trusted_user_acl, experimental); +TAG_FLAG(trusted_user_acl, sensitive); using std::string; using std::vector;
