From: Xinying Song Date: Thu, 14 Dec 2017 06:26:17 +0000 (+0800) Subject: rgw: correct log output for metadata section name in RGWListBucketIndexesCR X-Git-Tag: v13.0.2~727^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F19508%2Fhead;p=ceph.git rgw: correct log output for metadata section name in RGWListBucketIndexesCR Signed-off-by: Xinying Song --- diff --git a/src/rgw/rgw_data_sync.cc b/src/rgw/rgw_data_sync.cc index 6d3f01d40ebe..e35b533f1870 100644 --- a/src/rgw/rgw_data_sync.cc +++ b/src/rgw/rgw_data_sync.cc @@ -763,7 +763,7 @@ public: entrypoint, NULL, &result)); } if (retcode < 0) { - ldout(sync_env->cct, 0) << "ERROR: failed to fetch metadata for section bucket.index" << dendl; + ldout(sync_env->cct, 0) << "ERROR: failed to fetch metadata for section bucket.instance" << dendl; return set_cr_error(retcode); } entries_index = new RGWShardedOmapCRManager(sync_env->async_rados, store, this, num_shards, @@ -771,7 +771,7 @@ public: oid_prefix); yield; // yield so OmapAppendCRs can start for (iter = result.begin(); iter != result.end(); ++iter) { - ldout(sync_env->cct, 20) << "list metadata: section=bucket.index key=" << *iter << dendl; + ldout(sync_env->cct, 20) << "list metadata: section=bucket.instance key=" << *iter << dendl; key = *iter;