diff options
Diffstat (limited to 'keystoneclient/v3/client.py')
-rw-r--r-- | keystoneclient/v3/client.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/keystoneclient/v3/client.py b/keystoneclient/v3/client.py index 65ba5d7..417fdb2 100644 --- a/keystoneclient/v3/client.py +++ b/keystoneclient/v3/client.py @@ -19,6 +19,7 @@ from keystoneclient.auth.identity import v3 as v3_auth from keystoneclient import exceptions from keystoneclient import httpclient from keystoneclient.openstack.common import jsonutils +from keystoneclient.v3.contrib import endpoint_filter from keystoneclient.v3.contrib import federation from keystoneclient.v3.contrib import trusts from keystoneclient.v3 import credentials @@ -104,6 +105,7 @@ class Client(httpclient.HTTPClient): self.services = services.ServiceManager(self) self.users = users.UserManager(self) self.trusts = trusts.TrustManager(self) + self.endpoint_filter = endpoint_filter.EndpointFilterManager(self) # DEPRECATED: if session is passed then we go to the new behaviour of # authenticating on the first required call. |