Merge "Fix SushyError namespacing in Redfish inspection"

This commit is contained in:
Zuul 2019-01-04 09:12:36 +00:00 committed by Gerrit Code Review
commit 0811c5d143
1 changed files with 2 additions and 2 deletions

View File

@ -124,7 +124,7 @@ class RedfishInspect(base.InspectInterface):
simple_storage_size = simple_storage_size[0]
except sushy.SushyError as ex:
except sushy.exceptions.SushyError as ex:
LOG.debug("No simple storage information discovered "
"for node %(node)s: %(err)s", {'node': task.node.uuid,
'err': ex})
@ -140,7 +140,7 @@ class RedfishInspect(base.InspectInterface):
storage_size = storage_size[0]
except sushy.SushyError as ex:
except sushy.exceptions.SushyError as ex:
LOG.debug("No storage volume information discovered "
"for node %(node)s: %(err)s", {'node': task.node.uuid,
'err': ex})