]> git.apps.os.sepia.ceph.com Git - ceph-ci.git/commitdiff
rgw: cleanup err log msg in RGWDeletePut Op
authorJiaying Ren <mikulely@gmail.com>
Tue, 7 Mar 2017 03:38:50 +0000 (11:38 +0800)
committerJiaying Ren <mikulely@gmail.com>
Wed, 15 Mar 2017 08:34:07 +0000 (16:34 +0800)
Signed-off-by: Jiaying Ren <jiaying.ren@umcloud.com>
src/rgw/rgw_op.cc

index b7ee0beba238c0147b09cec0c39806543990ce7a..8c1eaf92411b19a980f026f1d6b2cb76c043fe0c 100644 (file)
@@ -4352,17 +4352,17 @@ void RGWDeleteLC::execute()
   do {
     op_ret = l.lock_exclusive(ctx, oid);
     if (op_ret == -EBUSY) {
-      dout(0) << "RGWLC::RGWPutLC() failed to acquire lock on, sleep 5, try again" << oid << dendl;
+      dout(0) << "RGWLC::RGWDeleteLC() failed to acquire lock on, sleep 5, try again" << oid << dendl;
       sleep(5);
       continue;
     }
     if (op_ret < 0) {
-      dout(0) << "RGWLC::RGWPutLC() failed to acquire lock " << oid << op_ret << dendl;
+      dout(0) << "RGWLC::RGWDeleteLC() failed to acquire lock " << oid << op_ret << dendl;
       break;
     }
     op_ret = cls_rgw_lc_rm_entry(*ctx, oid, entry);
     if (op_ret < 0) {
-      dout(0) << "RGWLC::RGWPutLC() failed to set entry " << oid << op_ret << dendl;     
+      dout(0) << "RGWLC::RGWDeleteLC() failed to set entry " << oid << op_ret << dendl;
     }
     break;
   }while(1);