This is an automated email from the ASF dual-hosted git repository. granthenke pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/kudu.git
commit 00c1b674545541a8a2a17aaca0738136540eb8b8 Author: Grant Henke <[email protected]> AuthorDate: Thu Apr 29 09:27:13 2021 -0500 KUDU-2754: Mark max_log_files as stable The max_log_files feature has existed and been in use since 2016. This patch marks the flag as stable so it can be used without the need of unlocking experimental flags. Change-Id: Icd8ca1ce314cc0d333c57a6582165da475224afb Reviewed-on: http://gerrit.cloudera.org:8080/17362 Tested-by: Kudu Jenkins Reviewed-by: Grant Henke <[email protected]> --- src/kudu/util/logging.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kudu/util/logging.cc b/src/kudu/util/logging.cc index 96b9a54..3ec98f2 100644 --- a/src/kudu/util/logging.cc +++ b/src/kudu/util/logging.cc @@ -68,7 +68,7 @@ DEFINE_int32(max_log_files, 10, "Maximum number of log files to retain per severity level. The most recent " "log files are retained. If set to 0, all log files are retained."); TAG_FLAG(max_log_files, runtime); -TAG_FLAG(max_log_files, experimental); +TAG_FLAG(max_log_files, stable); #define PROJ_NAME "kudu"
