From: Jiaying Ren Date: Tue, 7 Mar 2017 03:38:50 +0000 (+0800) Subject: rgw: cleanup err log msg in RGWDeletePut Op X-Git-Tag: v12.0.1~27^2~6 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=e91babdedf10fd72f945555f15e19568daa4c493;p=ceph.git rgw: cleanup err log msg in RGWDeletePut Op Signed-off-by: Jiaying Ren --- diff --git a/src/rgw/rgw_op.cc b/src/rgw/rgw_op.cc index b7ee0beba238..8c1eaf92411b 100644 --- a/src/rgw/rgw_op.cc +++ b/src/rgw/rgw_op.cc @@ -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);