tripleo_states: change wording

Change the wording to replace "This or these node(s) failed to deploy"
by "The following node(s) had failures:"; failures can happen at a
different level (not necessarily deploy). Update the wording to avoid
any confusion.

Change-Id: I80041738df05dbe0da678efa91e861390ad4657e
Related-Bug: #1889212
This commit is contained in:
Emilien Macchi 2020-07-28 10:04:07 -04:00
parent 569b428498
commit f1969830e0
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ class CallbackModule(CallbackBase):
' Number of nodes which did not deploy successfully: {} '
'~~~~~~~~~~~~~~~~~'.format(len(nodes_to_redeploy)))
nodes_to_redeploy_list = ", ".join(nodes_to_redeploy)
fail_msg = ' This or these node(s) failed to deploy: ' + \
fail_msg = ' The following node(s) had failures: ' + \
'{}'.format(nodes_to_redeploy_list)
self._output(fail_msg, 'red')
self._output('~' * 89)