summaryrefslogtreecommitdiffstats
path: root/src/rgw/rgw_reshard.cc
diff options
context:
space:
mode:
authorCasey Bodley <cbodley@users.noreply.github.com>2020-01-23 22:35:13 +0100
committerGitHub <noreply@github.com>2020-01-23 22:35:13 +0100
commit19d06094ab19ef175534daf97c18998ed1df25c4 (patch)
tree5bcdee32a02479c41303a6047f7cd662fba795c0 /src/rgw/rgw_reshard.cc
parentMerge pull request #31103 from zhangsw/fix-rgw-reshard-cleanindex (diff)
parentrgw: one log shard fails shouldn't block other shards process when reshard (diff)
downloadceph-19d06094ab19ef175534daf97c18998ed1df25c4.tar.xz
ceph-19d06094ab19ef175534daf97c18998ed1df25c4.zip
Merge pull request #31155 from zhangsw/fix-rgw-reshard-process
rgw: one log shard fails shouldn't block other shards process when reshard buckets Reviewed-by: Mark Kogan <mkogan@redhat.com>
Diffstat (limited to 'src/rgw/rgw_reshard.cc')
-rw-r--r--src/rgw/rgw_reshard.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/rgw/rgw_reshard.cc b/src/rgw/rgw_reshard.cc
index 78a0cdb4193..9e016d98baa 100644
--- a/src/rgw/rgw_reshard.cc
+++ b/src/rgw/rgw_reshard.cc
@@ -1107,9 +1107,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;