summaryrefslogtreecommitdiff
path: root/ironic
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2021-12-07 10:09:51 +0000
committerGerrit Code Review <review@openstack.org>2021-12-07 10:09:51 +0000
commit5fc0297a3644b58d69f1a4f633c2857a0cdccac9 (patch)
tree6ee5ea6ed6f235705ed993758e3de7358e9294fb /ironic
parent0ff3da2c05b6dd20a9e4c722e946ac954d119cbb (diff)
parent80fccd80c38f58b27abb43feb1ec6992bf7cede5 (diff)
downloadironic-5fc0297a3644b58d69f1a4f633c2857a0cdccac9.tar.gz
Merge "Trivial: minor follow-up to redfish fix"
Diffstat (limited to 'ironic')
-rw-r--r--ironic/drivers/modules/redfish/utils.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/ironic/drivers/modules/redfish/utils.py b/ironic/drivers/modules/redfish/utils.py
index eed391178..40cf33bce 100644
--- a/ironic/drivers/modules/redfish/utils.py
+++ b/ironic/drivers/modules/redfish/utils.py
@@ -375,7 +375,7 @@ def _get_connection(node, lambda_fun, *args):
'node': node.uuid, 'error': e})
raise exception.RedfishConnectionError(node=node.uuid, error=e)
except sushy.exceptions.AccessError as e:
- LOG.warning('For node %(node)s, we receieved an authentication '
+ LOG.warning('For node %(node)s, we received an authentication '
'access error from address %(address)s with auth_type '
'%(auth_type)s. The client will not be re-used upon '
'the next re-attempt. Please ensure your using the '
@@ -385,10 +385,10 @@ def _get_connection(node, lambda_fun, *args):
'node': node.uuid, 'error': e})
raise exception.RedfishError(node=node.uuid, error=e)
except AttributeError as e:
- LOG.warning('For node %(node)s, we receieved at AttributeError '
+ LOG.warning('For node %(node)s, we received at AttributeError '
'when attempting to utilize the client. A new '
'client session shall be used upon the next attempt.'
- 'Error: %(error)s',
+ 'Attribute Error: %(error)s',
{'node': node.uuid, 'error': e})
raise exception.RedfishError(node=node.uuid, error=e)