From f1969830e095401040be66bf245d91d20a08b221 Mon Sep 17 00:00:00 2001 From: Emilien Macchi Date: Tue, 28 Jul 2020 10:04:07 -0400 Subject: [PATCH] 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 --- tripleo_ansible/ansible_plugins/callback/tripleo_states.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tripleo_ansible/ansible_plugins/callback/tripleo_states.py b/tripleo_ansible/ansible_plugins/callback/tripleo_states.py index af88709fc..178d6cf42 100644 --- a/tripleo_ansible/ansible_plugins/callback/tripleo_states.py +++ b/tripleo_ansible/ansible_plugins/callback/tripleo_states.py @@ -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)