diff options
author | Yehuda Sadeh <yehuda@inktank.com> | 2013-06-17 11:07:41 -0700 |
---|---|---|
committer | Yehuda Sadeh <yehuda@inktank.com> | 2013-06-17 11:09:11 -0700 |
commit | 00656dad5344e5828cc9ceb436da9c3c80cbb96a (patch) | |
tree | 7a15776626d25d4f5d761e8e40f586046159129a | |
parent | 7c7293352c4d478225ed7344890f89360a694ae1 (diff) | |
download | ceph-00656dad5344e5828cc9ceb436da9c3c80cbb96a.tar.gz |
rgw: add 'delete' to signed subresources list
This fixes a regression that removed 'delete' from the signed
subresources list, thus made it impossible to authenticate
certain multipart object operations.
Signed-off-by: Yehuda Sadeh <yehuda@inktank.com>
-rw-r--r-- | src/rgw/rgw_auth_s3.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/rgw/rgw_auth_s3.cc b/src/rgw/rgw_auth_s3.cc index 5a88d3b5e1a..bdd458e68b6 100644 --- a/src/rgw/rgw_auth_s3.cc +++ b/src/rgw/rgw_auth_s3.cc @@ -6,6 +6,7 @@ static const char *signed_subresources[] = { "acl", + "delete", "lifecycle", "location", "logging", |