Merge pull request #8488 from oritwas/wip-15318

rgw: fix problem deleting objects begining with double underscores
This commit is contained in:
Matt Benjamin 2016-04-08 09:57:44 -04:00
commit 77e0a1b753

View File

@ -2995,7 +2995,8 @@ void RGWDeleteObj::execute()
return;
}
rgw_obj obj(s->bucket, s->object);
rgw_obj obj(s->bucket, s->object.name);
obj.set_instance(s->object.instance);
map<string, bufferlist> attrs;