diff options
author | Casey Bodley <cbodley@users.noreply.github.com> | 2020-01-23 22:35:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-23 22:35:13 +0100 |
commit | 19d06094ab19ef175534daf97c18998ed1df25c4 (patch) | |
tree | 5bcdee32a02479c41303a6047f7cd662fba795c0 /src/rgw/rgw_reshard.cc | |
parent | Merge pull request #31103 from zhangsw/fix-rgw-reshard-cleanindex (diff) | |
parent | rgw: one log shard fails shouldn't block other shards process when reshard (diff) | |
download | ceph-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.cc | 5 |
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; |