get_action_list: use novaclient.client.Client

This solves the following issue:

---snip---
UserWarning: 'novaclient.v2.client.Client' is not designed to be
initialized directly. It is inner class of novaclient. Please, use
'novaclient.client.Client' instead.
---snap---

Partial-bug: #1493576

Change-Id: Iceca8ccdfaa15108d3ea321ff164975f5f94ae95
This commit is contained in:
Christian Berendt 2015-09-14 18:15:15 +02:00
parent ffe6524573
commit 8c90ee3b7b
1 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ from heatclient.v1 import client as heatclient
from keystoneclient import base as keystone_base
from keystoneclient.v3 import client as keystoneclient
from novaclient.openstack.common.apiclient import base as nova_base
from novaclient.v2 import client as novaclient
from novaclient import client as novaclient
# TODO(nmakhotkin): Find a rational way to do it for neutron.
@ -105,7 +105,7 @@ GLANCE_NAMESPACE_LIST = [
def get_nova_client(**kwargs):
return novaclient.Client()
return novaclient.Client(2)
def get_keystone_client(**kwargs):