Fix keystone v3 issue with Queens

https://bugs.launchpad.net/kloudbuster/+bug/1774616

Change-Id: I6f229285cd24bc410d7fb921bc82a0b9f7fc5b38
Signed-off-by: ahothan <ahothan@cisco.com>
This commit is contained in:
ahothan 2018-06-04 10:49:27 +02:00
parent 4a0f595d02
commit e9da263ae9
2 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,7 @@ from kb_runner_storage import KBRunner_Storage
from kb_scheduler import KBScheduler from kb_scheduler import KBScheduler
import keystoneauth1 import keystoneauth1
from keystoneclient.v2_0 import client as keystoneclient from keystoneclient import client as keystoneclient
import log as logging import log as logging
from neutronclient.neutron import client as neutronclient from neutronclient.neutron import client as neutronclient

View File

@ -68,7 +68,7 @@ class Tenant(object):
LOG.info("Creating tenant: " + self.tenant_name) LOG.info("Creating tenant: " + self.tenant_name)
tenant_object = \ tenant_object = \
self.tenant_api.create(self.tenant_name, self.tenant_api.create(self.tenant_name,
# domain="default", domain="default",
description="KloudBuster tenant", description="KloudBuster tenant",
enabled=True) enabled=True)
return tenant_object return tenant_object