From 6553a7c8de174873fe98891f2264d4bc1a576586 Mon Sep 17 00:00:00 2001 From: Leo Zhang Date: Tue, 13 Jun 2017 11:18:28 +0800 Subject: [PATCH] filestore: fix filestore_debug_omap_check option to a default bool value Signed-off-by: Leo Zhang --- src/common/config_opts.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/config_opts.h b/src/common/config_opts.h index e6ae7df00b1..db8b7ce7e3a 100644 --- a/src/common/config_opts.h +++ b/src/common/config_opts.h @@ -1223,7 +1223,7 @@ OPTION(filestore_index_retry_probability, OPT_DOUBLE, 0) // Allow object read error injection OPTION(filestore_debug_inject_read_err, OPT_BOOL, false) -OPTION(filestore_debug_omap_check, OPT_BOOL, 0) // Expensive debugging check on sync +OPTION(filestore_debug_omap_check, OPT_BOOL, false) // Expensive debugging check on sync OPTION(filestore_omap_header_cache_size, OPT_INT, 1024) // Use omap for xattrs for attrs over -- 2.47.3