Merge "Change ibmcclient compatible version"

This commit is contained in:
Zuul 2020-05-17 06:32:36 +00:00 committed by Gerrit Code Review
commit c6249c4938
5 changed files with 10 additions and 6 deletions

View File

@ -17,7 +17,7 @@ sushy>=3.2.0
ansible>=2.7
# HUAWEI iBMC hardware type uses the python-ibmcclient library
python-ibmcclient>=0.1.0,<0.2.0
python-ibmcclient>=0.2.2,<0.3.0
# Dell EMC iDRAC sushy OEM extension
sushy-oem-idrac<=1.0.0

View File

@ -152,7 +152,7 @@ def handle_ibmc_exception(action):
try:
return f(*args, **kwargs)
except ibmc_error.ConnectionError as e:
except ibmc_error.IBMCConnectionError as e:
error = (_('Failed to connect to iBMC for node %(node)s, '
'Error: %(error)s')
% {'node': node.uuid, 'error': e})

View File

@ -144,8 +144,8 @@ class IBMCUtilsTestCase(base.IBMCTestCase):
conn = self.mock_ibmc_conn(connect_ibmc)
# Mocks
conn.system.get.side_effect = [
ibmc_error.ConnectionError(url=self.ibmc['address'],
error='Failed to connect to host'),
ibmc_error.IBMCConnectionError(url=self.ibmc['address'],
error='Failed to connect to host'),
mock.PropertyMock(
boot_source_override=mock.PropertyMock(
target=constants.BOOT_SOURCE_TARGET_PXE,

View File

@ -264,8 +264,8 @@ if not ibmc_client:
# Mock iBMC client exceptions
exceptions = mock.MagicMock()
exceptions.ConnectionError = (
type('ConnectionError', (MockKwargsException,), {}))
exceptions.IBMCConnectionError = (
type('IBMCConnectionError', (MockKwargsException,), {}))
exceptions.IBMCClientError = (
type('IBMCClientError', (MockKwargsException,), {}))
sys.modules['ibmc_client.exceptions'] = exceptions

View File

@ -0,0 +1,4 @@
---
upgrade:
- |
Updates required ibmcclient version for ibmc drivers to 0.2.2.