Merge "Fix positional argument error when running the 76 script."

This commit is contained in:
Zuul 2024-01-10 22:02:31 +00:00 committed by Gerrit Code Review
commit 321648b189
1 changed files with 2 additions and 1 deletions

View File

@ -312,7 +312,8 @@ def remove_docker_images():
tiller_image = None
# Get image names
image_list = client.sysinv.registry_image.list()
filter_out_untagged = False
image_list = client.sysinv.registry_image.list(int(filter_out_untagged))
if not image_list:
LOG.warning("Failed to remove armada docker image.")
return False