From 82c1d375d45669cc0f1b59444136b4a2334512a0 Mon Sep 17 00:00:00 2001 From: haoyixing Date: Thu, 24 Dec 2020 18:22:30 +0800 Subject: [PATCH] option: update comments of option osd_map_message_max_bytes Option osd_map_message_max_bytes indicates the max bytes of MOSDMap message, not maps count as osd_map_message_max. Signed-off-by: haoyixing --- src/common/legacy_config_opts.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/legacy_config_opts.h b/src/common/legacy_config_opts.h index 162b324fdaa..9d6972bdaf1 100644 --- a/src/common/legacy_config_opts.h +++ b/src/common/legacy_config_opts.h @@ -594,7 +594,7 @@ OPTION(osd_objecter_finishers, OPT_INT) OPTION(osd_map_dedup, OPT_BOOL) OPTION(osd_map_cache_size, OPT_INT) OPTION(osd_map_message_max, OPT_INT) // max maps per MOSDMap message -OPTION(osd_map_message_max_bytes, OPT_SIZE) // max maps per MOSDMap message +OPTION(osd_map_message_max_bytes, OPT_SIZE) // max bytes of maps per MOSDMap message OPTION(osd_map_share_max_epochs, OPT_INT) // cap on # of inc maps we send to peers, clients OPTION(osd_inject_bad_map_crc_probability, OPT_FLOAT) OPTION(osd_inject_failure_on_pg_removal, OPT_BOOL)