From a68a4803b00ead3e7447df5bc19f9b61b96cf6da Mon Sep 17 00:00:00 2001 From: Weibing Zhang Date: Wed, 4 Jan 2017 16:49:54 +0800 Subject: [PATCH] rgw: orphan: fix error messages Just fix some typos in error messages. Signed-off-by: Weibing Zhang --- src/rgw/rgw_orphan.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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; } -- 2.39.5