Passes playbook to the validation action as a list

Recent removal of the 'validations_libs.utils.convert_data'
function, implemented by the Ief9459e914ea73fbd59a85c07a55c26078e0126a,
resulted in a change of accepted argument types of
the 'validations_libs.validation_actions' methods.

This patch turns the passed argument from string into a list.

Closes-bug: #1936465

Signed-off-by: Jiri Podivin <jpodivin@redhat.com>
Change-Id: I4e96f5a0e013de5abcde837dad3c5f9d5228dd4c
(cherry picked from commit efdefd92de)
(cherry picked from commit 265c15ab2f)
This commit is contained in:
Jiri Podivin 2021-07-16 08:39:22 +02:00 committed by mbu
parent bd45a745da
commit db6a3287f4
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ def _check_diskspace(upgrade=False):
inventory='undercloud',
log_path=tmp,
validations_dir=constants.ANSIBLE_VALIDATION_DIR,
validation_name=playbook)
validation_name=[playbook])
def _check_memory():