]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
config: change default log_max_recent to 10,000
authorSage Weil <sage@inktank.com>
Fri, 4 Jan 2013 19:07:48 +0000 (11:07 -0800)
committerSage Weil <sage@inktank.com>
Fri, 4 Jan 2013 19:07:48 +0000 (11:07 -0800)
Commit c34e38bcdc0460219d19b21ca7a0554adf7f7f84 meant to do this but got
the wrong number of zeros.

Signed-off-by: Sage Weil <sage@inktank.com>
src/common/config_opts.h

index c3d8c2c9d06c0520cbe3897177b4acffda2a825c..0830346d46243892e736622ac8e553ad2705fb4f 100644 (file)
@@ -32,7 +32,7 @@ OPTION(max_open_files, OPT_LONGLONG, 0)
 
 OPTION(log_file, OPT_STR, "/var/log/ceph/$cluster-$name.log")
 OPTION(log_max_new, OPT_INT, 1000)
-OPTION(log_max_recent, OPT_INT, 100000)
+OPTION(log_max_recent, OPT_INT, 10000)
 OPTION(log_to_stderr, OPT_BOOL, true)
 OPTION(err_to_stderr, OPT_BOOL, true)
 OPTION(log_to_syslog, OPT_BOOL, false)