From: Daniel Gryniewicz Date: Thu, 17 Mar 2022 14:35:51 +0000 (-0400) Subject: RGW - Make admin bucket chown accept marker X-Git-Tag: v18.0.0~1221^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=7eee6efa81ad97b8c8a9c7d8d7a8a3be0394adc0;p=ceph.git RGW - Make admin bucket chown accept marker The bucket chown command needs to touch every object, and if it fails can take a long time to catch up. Allow it to accept the --marker option so you can tell it where to pick up. Fixes: https://tracker.ceph.com/issues/53614 Signed-off-by: Daniel Gryniewicz --- diff --git a/src/rgw/rgw_admin.cc b/src/rgw/rgw_admin.cc index 3ea1119e0ff80..c9695d4182946 100644 --- a/src/rgw/rgw_admin.cc +++ b/src/rgw/rgw_admin.cc @@ -6807,7 +6807,6 @@ int main(int argc, const char **argv) bucket_op.set_bucket_name(bucket_name); bucket_op.set_new_bucket_name(new_bucket_name); string err; - string marker; int r = RGWBucketAdminOp::chown(store, bucket_op, marker, dpp(), &err); if (r < 0) {