From: Weibing Zhang Date: Wed, 4 Jan 2017 08:49:54 +0000 (+0800) Subject: rgw: orphan: fix error messages X-Git-Tag: v12.0.0~40^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=a68a4803b00ead3e7447df5bc19f9b61b96cf6da;p=ceph-ci.git rgw: orphan: fix error messages Just fix some typos in error messages. Signed-off-by: Weibing Zhang --- diff --git a/src/rgw/rgw_orphan.cc b/src/rgw/rgw_orphan.cc index 4739950d36f..c8c95cf9c2e 100644 --- a/src/rgw/rgw_orphan.cc +++ b/src/rgw/rgw_orphan.cc @@ -765,7 +765,7 @@ int RGWOrphanSearch::run() ldout(store->ctx(), 0) << __func__ << "(): building index of all objects in pool" << dendl; r = build_all_oids_index(); if (r < 0) { - lderr(store->ctx()) << __func__ << ": ERROR: build_all_objs_index returnr ret=" << r << dendl; + lderr(store->ctx()) << __func__ << ": ERROR: build_all_objs_index returned ret=" << r << dendl; return r; } @@ -781,7 +781,7 @@ int RGWOrphanSearch::run() ldout(store->ctx(), 0) << __func__ << "(): building index of all bucket indexes" << dendl; r = build_buckets_instance_index(); if (r < 0) { - lderr(store->ctx()) << __func__ << ": ERROR: build_all_objs_index returnr ret=" << r << dendl; + lderr(store->ctx()) << __func__ << ": ERROR: build_all_objs_index returned ret=" << r << dendl; return r; } @@ -798,7 +798,7 @@ int RGWOrphanSearch::run() ldout(store->ctx(), 0) << __func__ << "(): building index of all linked objects" << dendl; r = build_linked_oids_index(); if (r < 0) { - lderr(store->ctx()) << __func__ << ": ERROR: build_all_objs_index returnr ret=" << r << dendl; + lderr(store->ctx()) << __func__ << ": ERROR: build_all_objs_index returned ret=" << r << dendl; return r; } @@ -813,7 +813,7 @@ int RGWOrphanSearch::run() case ORPHAN_SEARCH_STAGE_COMPARE: r = compare_oid_indexes(); if (r < 0) { - lderr(store->ctx()) << __func__ << ": ERROR: build_all_objs_index returnr ret=" << r << dendl; + lderr(store->ctx()) << __func__ << ": ERROR: build_all_objs_index returned ret=" << r << dendl; return r; }