diff options
author | Pritha Srivastava <prsrivas@redhat.com> | 2018-07-19 16:52:24 +0200 |
---|---|---|
committer | Pritha Srivastava <prsrivas@redhat.com> | 2018-09-21 07:39:33 +0200 |
commit | b09fc4079e3b9b27c114025e3206b7f816c52caf (patch) | |
tree | bb1f35b0f9c656b835d16b8fcfbe37f3fcc42b9b /src/rgw/rgw_swift_auth.cc | |
parent | rgw: STS authentication correction. (diff) | |
download | ceph-b09fc4079e3b9b27c114025e3206b7f816c52caf.tar.xz ceph-b09fc4079e3b9b27c114025e3206b7f816c52caf.zip |
rgw: Perm mask.
Signed-off-by: Pritha Srivastava <prsrivas@redhat.com>
Diffstat (limited to 'src/rgw/rgw_swift_auth.cc')
-rw-r--r-- | src/rgw/rgw_swift_auth.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rgw/rgw_swift_auth.cc b/src/rgw/rgw_swift_auth.cc index 45c3b00d7fe..4fd2d37196d 100644 --- a/src/rgw/rgw_swift_auth.cc +++ b/src/rgw/rgw_swift_auth.cc @@ -419,7 +419,7 @@ ExternalTokenEngine::authenticate(const std::string& token, auto apl = apl_factory->create_apl_local(cct, s, tmp_uinfo, extract_swift_subuser(swift_user), - boost::none); + boost::none, boost::none); return result_t::grant(std::move(apl)); } @@ -569,7 +569,7 @@ SignedTokenEngine::authenticate(const std::string& token, auto apl = apl_factory->create_apl_local(cct, s, user_info, extract_swift_subuser(swift_user), - boost::none); + boost::none, boost::none); return result_t::grant(std::move(apl)); } |