Merge "DS8k Cinder Driver support Python3"

This commit is contained in:
Zuul 2019-12-19 18:33:58 +00:00 committed by Gerrit Code Review
commit 77cb87718b
2 changed files with 2 additions and 5 deletions

View File

@ -203,8 +203,8 @@ class RESTScheduler(object):
self.token = ''
self.host = host
self.port = '8452'
self.user = user
self.passw = passw
self.user = user if isinstance(user, str) else user.decode()
self.passw = passw if isinstance(passw, str) else passw.decode()
self.connector = connector_obj or DefaultRESTConnector(verify)
self.connect()

View File

@ -85,9 +85,6 @@ class IBMStorageDriver(san.SanDriver,
# ThirdPartySystems wiki page
CI_WIKI_NAME = "IBM_STORAGE_CI"
# TODO(jsbryant) Remove driver in the 'U' release if CI is not fixed.
SUPPORTED = False
def __init__(self, *args, **kwargs):
"""Initialize the driver."""