diff options
author | Casey Bodley <cbodley@users.noreply.github.com> | 2017-06-23 20:38:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-23 20:38:09 +0200 |
commit | 96edd985dad0791ab830cdf627afbac6dac9ce5f (patch) | |
tree | b0c7396b878c31d10259b17deeb780600527a092 /src/rgw/rgw_auth_s3.h | |
parent | Merge pull request #14624 from ceph/wip-s3a-hadoop (diff) | |
parent | rgw: external auth engines of S3 honor rgw_keystone_implicit_tenants. (diff) | |
download | ceph-96edd985dad0791ab830cdf627afbac6dac9ce5f.tar.xz ceph-96edd985dad0791ab830cdf627afbac6dac9ce5f.zip |
Merge pull request #15572 from rzarzynski/wip-rgw-17779
rgw: external auth engines of S3 honor rgw_keystone_implicit_tenants.
Reviewed-by: Matt Benjamin <mbenjamin@redhat.com>
Diffstat (limited to 'src/rgw/rgw_auth_s3.h')
-rw-r--r-- | src/rgw/rgw_auth_s3.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rgw/rgw_auth_s3.h b/src/rgw/rgw_auth_s3.h index b5fc2919213..a9d5b63f78f 100644 --- a/src/rgw/rgw_auth_s3.h +++ b/src/rgw/rgw_auth_s3.h @@ -46,7 +46,7 @@ class ExternalAuthStrategy : public rgw::auth::Strategy, ) const override { auto apl = rgw::auth::add_sysreq(cct, store, s, rgw::auth::RemoteApplier(cct, store, std::move(acl_alg), info, - false /* no implicit tenants */)); + cct->_conf->rgw_keystone_implicit_tenants)); /* TODO(rzarzynski): replace with static_ptr. */ return aplptr_t(new decltype(apl)(std::move(apl))); } |