From: zhangshaowen Date: Fri, 25 Oct 2019 08:47:43 +0000 (+0800) Subject: rgw: one log shard fails shouldn't block other shards process when reshard X-Git-Tag: v15.1.0~78^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=07056ac1e75bdb08f2287b18ffc0f76a8e73fc0f;p=ceph.git rgw: one log shard fails shouldn't block other shards process when reshard buckets Signed-off-by: zhangshaowen --- diff --git a/src/rgw/rgw_reshard.cc b/src/rgw/rgw_reshard.cc index 4c05001199d..22d639f325e 100644 --- a/src/rgw/rgw_reshard.cc +++ b/src/rgw/rgw_reshard.cc @@ -1054,9 +1054,8 @@ int RGWReshard::process_all_logshards() ldout(store->ctx(), 20) << "processing logshard = " << logshard << dendl; ret = process_single_logshard(i); - if (ret <0) { - return ret; - } + + ldout(store->ctx(), 20) << "finish processing logshard = " << logshard << " , ret = " << ret << dendl; } return 0;