From ecb894f65eb3e910fcd325a970f71dfaf6c1a4ec Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Wed, 10 May 2017 19:39:32 +0800 Subject: [PATCH] config_opts: drop unused options Signed-off-by: Kefu Chai --- src/common/config_opts.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/common/config_opts.h b/src/common/config_opts.h index 6f90a754ef5e..51dced2645e6 100644 --- a/src/common/config_opts.h +++ b/src/common/config_opts.h @@ -336,8 +336,6 @@ OPTION(mon_max_log_epochs, OPT_INT, 500) OPTION(mon_max_mdsmap_epochs, OPT_INT, 500) OPTION(mon_max_osd, OPT_INT, 10000) OPTION(mon_probe_timeout, OPT_DOUBLE, 2.0) -OPTION(mon_slurp_timeout, OPT_DOUBLE, 10.0) -OPTION(mon_slurp_bytes, OPT_INT, 256*1024) // limit size of slurp messages OPTION(mon_client_bytes, OPT_U64, 100ul << 20) // client msg data allowed in memory (in bytes) OPTION(mon_mgr_proxy_client_bytes_ratio, OPT_FLOAT, .3) // ratio of mon_client_bytes that can be consumed by proxied mgr commands before we error out to client OPTION(mon_daemon_bytes, OPT_U64, 400ul << 20) // mds, osd message memory cap (in bytes) @@ -364,9 +362,6 @@ OPTION(mon_config_key_max_entry_size, OPT_INT, 4096) // max num bytes per config OPTION(mon_sync_timeout, OPT_DOUBLE, 60.0) OPTION(mon_sync_max_payload_size, OPT_U32, 1048576) // max size for a sync chunk payload (say, 1MB) OPTION(mon_sync_debug, OPT_BOOL, false) // enable sync-specific debug -OPTION(mon_sync_debug_leader, OPT_INT, -1) // monitor to be used as the sync leader -OPTION(mon_sync_debug_provider, OPT_INT, -1) // monitor to be used as the sync provider -OPTION(mon_sync_debug_provider_fallback, OPT_INT, -1) // monitor to be used as fallback if sync provider fails OPTION(mon_inject_sync_get_chunk_delay, OPT_DOUBLE, 0) // inject N second delay on each get_chunk request OPTION(mon_osd_min_down_reporters, OPT_INT, 2) // number of OSDs from different subtrees who need to report a down OSD for it to count OPTION(mon_osd_reporter_subtree_level , OPT_STR, "host") // in which level of parent bucket the reporters are counted -- 2.47.3