Don't use the 'keystone' client (functional tests)

Change-Id: I2568305a5ad779bcd1ca8709f92e2b4d7b4161ff
This commit is contained in:
Paul Glass 2016-05-09 15:55:19 +00:00
parent 5ac063eba3
commit 95f5bdb97a

View File

@ -314,8 +314,8 @@ class DesignateCLI(base.CLIClient, ZoneCommands, ZoneTransferCommands,
def __init__(self, *args, **kwargs):
super(DesignateCLI, self).__init__(*args, **kwargs)
# grab the project id. this is used for zone transfer requests
resp = FieldValueModel(self.keystone('token-get'))
self.project_id = resp.tenant_id
resp = FieldValueModel(self.openstack('token issue'))
self.project_id = resp.project_id
@property
def using_auth_override(self):