From: Matan Breizman Date: Sun, 21 Sep 2025 06:57:31 +0000 (+0300) Subject: Merge pull request #65527 from chanyoung/fix-coll-refs X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=12208e072faa66b12f712bc07f4245801ee9ebdb;p=ceph.git Merge pull request #65527 from chanyoung/fix-coll-refs crimson/.../store-bench: fix coll_refs index error Reviewed-by: Matan Breizman --- 12208e072faa66b12f712bc07f4245801ee9ebdb diff --cc src/crimson/tools/store_bench/store-bench.cc index 1312cbcb453a6,56d60bd31a263..700e30822786d --- a/src/crimson/tools/store_bench/store-bench.cc +++ b/src/crimson/tools/store_bench/store-bench.cc @@@ -786,11 -788,12 +788,11 @@@ int main(int argc, char **argv) */ ("store-path", po::value(&store_path)->required(), "path to store, /block should " - "be a symlink to the target device for bluestore or seastore")( - "debug", po::value(&debug)->default_value(false), - "enable debugging") + "be a symlink to the target device for bluestore or seastore") + ("debug", po::bool_switch(&debug), "enable debugging") ("work-load-type", po::value(&work_load_type)->required(), - "work load type: pg_log or rgw_index") + "work load type: pg_log, rgw_index or random_write") ("smp", po::value(&smp), "number of reactors");