Merge "Importing from trove-client compat"
This commit is contained in:
commit
4c83b33934
@ -21,7 +21,12 @@ try:
|
|||||||
from troveclient import client
|
from troveclient import client
|
||||||
with_trove = True
|
with_trove = True
|
||||||
except ImportError:
|
except ImportError:
|
||||||
with_trove = False
|
try:
|
||||||
|
from troveclient.compat import auth
|
||||||
|
from troveclient.compat import client
|
||||||
|
with_trove = True
|
||||||
|
except ImportError:
|
||||||
|
with_trove = False
|
||||||
|
|
||||||
|
|
||||||
class TokenAuth(object):
|
class TokenAuth(object):
|
||||||
|
@ -24,7 +24,14 @@ from openstack_dashboard import api
|
|||||||
from openstack_dashboard.test import helpers as test
|
from openstack_dashboard.test import helpers as test
|
||||||
|
|
||||||
if api.trove.with_trove:
|
if api.trove.with_trove:
|
||||||
from troveclient import common
|
try:
|
||||||
|
from troveclient import common
|
||||||
|
except ImportError:
|
||||||
|
try:
|
||||||
|
from troveclient.compat import common
|
||||||
|
except ImportError:
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
INDEX_URL = reverse('horizon:project:databases:index')
|
INDEX_URL = reverse('horizon:project:databases:index')
|
||||||
LAUNCH_URL = reverse('horizon:project:databases:launch')
|
LAUNCH_URL = reverse('horizon:project:databases:launch')
|
||||||
|
@ -29,7 +29,11 @@ try:
|
|||||||
from troveclient import exceptions as troveclient
|
from troveclient import exceptions as troveclient
|
||||||
with_trove = True
|
with_trove = True
|
||||||
except ImportError:
|
except ImportError:
|
||||||
with_trove = False
|
try:
|
||||||
|
from troveclient.compat import exceptions as troveclient
|
||||||
|
with_trove = True
|
||||||
|
except ImportError:
|
||||||
|
with_trove = False
|
||||||
|
|
||||||
|
|
||||||
UNAUTHORIZED = (keystoneclient.Unauthorized,
|
UNAUTHORIZED = (keystoneclient.Unauthorized,
|
||||||
|
@ -42,7 +42,11 @@ try:
|
|||||||
from troveclient import client as trove_client
|
from troveclient import client as trove_client
|
||||||
with_trove = True
|
with_trove = True
|
||||||
except ImportError:
|
except ImportError:
|
||||||
with_trove = False
|
try:
|
||||||
|
from troveclient.compat import client as trove_client
|
||||||
|
with_trove = True
|
||||||
|
except ImportError:
|
||||||
|
with_trove = False
|
||||||
|
|
||||||
import httplib2
|
import httplib2
|
||||||
import mox
|
import mox
|
||||||
|
@ -23,7 +23,11 @@ try:
|
|||||||
from troveclient import exceptions as trove_exceptions
|
from troveclient import exceptions as trove_exceptions
|
||||||
with_trove = True
|
with_trove = True
|
||||||
except ImportError:
|
except ImportError:
|
||||||
with_trove = False
|
try:
|
||||||
|
from troveclient.compat import exceptions as trove_exceptions
|
||||||
|
with_trove = True
|
||||||
|
except ImportError:
|
||||||
|
with_trove = False
|
||||||
|
|
||||||
from openstack_dashboard.test.test_data import utils
|
from openstack_dashboard.test.test_data import utils
|
||||||
|
|
||||||
|
@ -19,7 +19,12 @@ try:
|
|||||||
from troveclient import instances
|
from troveclient import instances
|
||||||
with_trove = True
|
with_trove = True
|
||||||
except ImportError:
|
except ImportError:
|
||||||
with_trove = False
|
try:
|
||||||
|
from troveclient.v1 import backups
|
||||||
|
from troveclient.v1 import instances
|
||||||
|
with_trove = True
|
||||||
|
except ImportError:
|
||||||
|
with_trove = False
|
||||||
|
|
||||||
from openstack_dashboard.test.test_data import utils
|
from openstack_dashboard.test.test_data import utils
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user