diff options
author | Yehuda Sadeh <yehuda@inktank.com> | 2013-10-04 13:00:26 -0700 |
---|---|---|
committer | Yehuda Sadeh <yehuda@inktank.com> | 2013-10-04 13:00:26 -0700 |
commit | 9e46058a7b150364a3467b09dad1b3c296524a99 (patch) | |
tree | adfcd0434fb462367fcc32f416b0548cedc2b5c5 | |
parent | e9e64545d5300364e4775ec68b4a6b9ca76b505b (diff) | |
download | ceph-9e46058a7b150364a3467b09dad1b3c296524a99.tar.gz |
rgw: swift update obj metadata also add generic attrswip-6462
Fixes: #6462
We were missing the generic attributes when we updated the object
metadata (operation that only exists in the swift api).
Signed-off-by: Yehuda Sadeh <yehuda@inktank.com>
-rw-r--r-- | src/rgw/rgw_op.cc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/rgw/rgw_op.cc b/src/rgw/rgw_op.cc index 114b8709a22..fc4ad6d3511 100644 --- a/src/rgw/rgw_op.cc +++ b/src/rgw/rgw_op.cc @@ -1604,6 +1604,13 @@ void RGWPutMetadata::execute() } } + map<string, string>::iterator giter; + for (giter = s->generic_attrs.begin(); giter != s->generic_attrs.end(); ++giter) { + bufferlist& attrbl = attrs[giter->first]; + const string& val = giter->second; + attrbl.append(val.c_str(), val.size() + 1); + } + if (has_policy) { policy.encode(bl); attrs[RGW_ATTR_ACL] = bl; |