]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
rgw: orphan: fix error messages 12782/head
authorWeibing Zhang <atheism.zhang@gmail.com>
Wed, 4 Jan 2017 08:49:54 +0000 (16:49 +0800)
committerWeibing Zhang <atheism.zhang@gmail.com>
Wed, 4 Jan 2017 08:49:54 +0000 (16:49 +0800)
    Just fix some typos in error messages.

Signed-off-by: Weibing Zhang <zhangweibing@unitedstack.com>
src/rgw/rgw_orphan.cc

index 4739950d36f5722c9d5464b8cc57292d354a28f3..c8c95cf9c2e4b48d06a70a785815fc1cae0a540a 100644 (file)
@@ -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;
       }