summaryrefslogtreecommitdiffstats
path: root/src/rgw/rgw_auth_s3.h
diff options
context:
space:
mode:
authorCasey Bodley <cbodley@users.noreply.github.com>2017-06-23 20:38:09 +0200
committerGitHub <noreply@github.com>2017-06-23 20:38:09 +0200
commit96edd985dad0791ab830cdf627afbac6dac9ce5f (patch)
treeb0c7396b878c31d10259b17deeb780600527a092 /src/rgw/rgw_auth_s3.h
parentMerge pull request #14624 from ceph/wip-s3a-hadoop (diff)
parentrgw: external auth engines of S3 honor rgw_keystone_implicit_tenants. (diff)
downloadceph-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.h2
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)));
}