This is an automated email from the ASF dual-hosted git repository. todd pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/kudu.git
commit f89a0ced376019a27bcdee58fb2874bf4854406b Author: Hao Hao <[email protected]> AuthorDate: Mon Apr 6 00:05:21 2020 -0700 ranger: remove experimental flags This patch removes the experimental flags in Ranger, given I did integration tests on a real cluster. Change-Id: I87e36f973730f54e6e3984e34a8216eeeacc1088 Reviewed-on: http://gerrit.cloudera.org:8080/15658 Reviewed-by: Andrew Wong <[email protected]> Tested-by: Kudu Jenkins Reviewed-by: Alexey Serbin <[email protected]> --- src/kudu/ranger/ranger_client.cc | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/kudu/ranger/ranger_client.cc b/src/kudu/ranger/ranger_client.cc index ff78112..c661f69 100644 --- a/src/kudu/ranger/ranger_client.cc +++ b/src/kudu/ranger/ranger_client.cc @@ -55,20 +55,17 @@ DEFINE_string(ranger_java_path, "", "evaluated using the Kudu user's PATH. Empty string means " "$JAVA_HOME/bin/java is used. If $JAVA_HOME is not found, Kudu " "will attempt to find 'java' in $PATH."); -TAG_FLAG(ranger_java_path, experimental); DEFINE_string(ranger_config_path, "", "Path to directory containing Ranger client configuration. " "Enables Ranger authorization provider. " "sentry_service_rpc_addresses must not be set if this is " "enabled."); -TAG_FLAG(ranger_config_path, experimental); DEFINE_string(ranger_jar_path, "", "Path to the JAR file containing the Ranger subprocess. " "If not set, the default JAR file path is expected to be" "next to the master binary."); -TAG_FLAG(ranger_jar_path, experimental); DEFINE_string(ranger_receiver_fifo_dir, "", "Directory in which to create a fifo used to receive messages "
