Merge "Fix download image registry exception message"

This commit is contained in:
Zuul 2021-09-03 05:44:53 +00:00 committed by Gerrit Code Review
commit 17b2f00321

View File

@ -3111,7 +3111,7 @@ class DockerHelper(object):
except Exception as e:
rc = False
LOG.error("Image %s download failed from public/private"
"registry: %s" % (target_img_tag, e))
"registry: %s" % (pub_img_tag, e))
return img_tag, rc
try: