summaryrefslogtreecommitdiff
path: root/ironic/drivers
diff options
context:
space:
mode:
authorSam Zuk <szuk@redhat.com>2022-06-14 17:06:14 +0000
committerSam Zuk <szuk@redhat.com>2022-06-14 17:06:14 +0000
commit94f9745f0c04fc12b22edf0ee1f864d56e9c9cb2 (patch)
tree77a5a66249ab981b7af5e91b6b4bda3bb37eb337 /ironic/drivers
parent0659485d630b8651faa633f98b1802bdf244f186 (diff)
downloadironic-94f9745f0c04fc12b22edf0ee1f864d56e9c9cb2.tar.gz
[Minor] Fix misspellings of "insufficient"
In a few places in the codebase, "insufficient" is misspelled as "insufficent," which includes function names and exception class names. This can be inconvenient for writing and debugging code, in which case one would raise an exception/call a function and get an error that is resolved by intentionally misspelling the function call. The changes made here are mostly to the names of exceptions and functions but also include some other instances of this misspelling in docstrings, policy descriptions, etc. There were also some strings describing policies in ironic/common/policy.py that were missing spaces, which were also fixed. Story: 2010089 Task: 45604 Change-Id: I7b65c449d5d30ca30f537a95a3ffd365492e0274
Diffstat (limited to 'ironic/drivers')
-rw-r--r--ironic/drivers/modules/deploy_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ironic/drivers/modules/deploy_utils.py b/ironic/drivers/modules/deploy_utils.py
index f6883249f..856a7f25b 100644
--- a/ironic/drivers/modules/deploy_utils.py
+++ b/ironic/drivers/modules/deploy_utils.py
@@ -818,7 +818,7 @@ def get_image_instance_info(node):
error_msg = (_("Cannot validate image information for node %s because one "
"or more parameters are missing from its instance_info and "
- "insufficent information is present to boot from a remote "
+ "insufficient information is present to boot from a remote "
"volume")
% node.uuid)
check_for_missing_params(info, error_msg)