Fix wrong usage of novaclient

novaclient.client.Client is a documented way to initialize novaclient.
Also, it provides a backward compatible layer.

Change-Id: I9dd15abbeda26c5a6a40139ce47a200720decce8
Closes-Bug: #1493576
This commit is contained in:
Andrey Kurilin 2016-06-21 21:27:28 +03:00
parent 88f4a87f48
commit 57411fec5e
1 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ import webob.exc
from congressclient.v1 import client
import keystoneclient
from keystoneclient.v3 import client as ksv3client
from novaclient.v2 import client as nova_v2
from novaclient import client as nova
LOG = logging.getLogger(__name__)
@ -89,7 +89,7 @@ class Congress(wsgi.Middleware):
projects = k3_client.projects.list(domain=domain)
# obtain list of hosts under each of these projects
nova_c = nova_v2.Client(session=session)
nova_c = nova.Client("2", session=session)
ram_p = 0
disk_p = 0
cpus_p = 0