From: Ken Dreyer Date: Thu, 15 Sep 2016 18:56:39 +0000 (-0600) Subject: radosgw-admin: add "--orphan-stale-secs" to --help X-Git-Tag: v10.2.4~88^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=4e66f9e9d1179204a6fdf08e43608a852d2b7fd3;p=ceph.git radosgw-admin: add "--orphan-stale-secs" to --help The radosgw-admin --help did not include the description of the `--orphan-stale-secs` option of the `orphans find` command. The option sets the number of seconds to wait before declaring an object to be an orphan. Fixes: http://tracker.ceph.com/issues/17280 Signed-off-by: Ken Dreyer (cherry picked from commit 354059ae43b4f4cc797da1669715399cd96a4738) --- diff --git a/src/rgw/rgw_admin.cc b/src/rgw/rgw_admin.cc index c36b913d5da..453de3b1a58 100644 --- a/src/rgw/rgw_admin.cc +++ b/src/rgw/rgw_admin.cc @@ -238,6 +238,7 @@ void _usage() cout << "\nOrphans search options:\n"; cout << " --pool data pool to scan for leaked rados objects in\n"; cout << " --num-shards num of shards to use for keeping the temporary scan info\n"; + cout << " --orphan-stale-secs num of seconds to wait before declaring an object to be an orphan (default: 86400)\n"; cout << " --job-id set the job id (for orphans find)\n"; cout << " --max-concurrent-ios maximum concurrent ios for orphans find (default: 32)\n"; cout << "\n"; diff --git a/src/test/cli/radosgw-admin/help.t b/src/test/cli/radosgw-admin/help.t index 606a5f35ef4..5fb1321ebd4 100644 --- a/src/test/cli/radosgw-admin/help.t +++ b/src/test/cli/radosgw-admin/help.t @@ -192,6 +192,7 @@ Orphans search options: --pool data pool to scan for leaked rados objects in --num-shards num of shards to use for keeping the temporary scan info + --orphan-stale-secs num of seconds to wait before declaring an object to be an orphan (default: 86400) --job-id set the job id (for orphans find) --max-concurrent-ios maximum concurrent ios for orphans find (default: 32)