My fix was wrong again. Base this try off of @mantiz's fix in #9016

reviewable/pr18780/r1
Toshio Kuratomi 10 years ago
parent e51bcf90a0
commit 3f4bdce67e

@ -507,18 +507,21 @@ class DockerManager:
def get_split_image_tag(self, image):
# If image contains a host or org name, omit that from our check
if image.find('/') > 0:
if '/' in image:
registry, resource = image.rsplit('/', 1)
else:
registry, resource = '', image
registry, resource = None, image
# now we can determine if image has a tag
if resource.find(':') > 0:
if ':' in resource:
resource, tag = resource.split(':', 1)
return '/'.join((registry, resource)), tag
if registry:
resource = '/'.join((registry, resource))
else:
tag = "latest"
return image, tag
resource = image
return resource, tag
def get_summary_counters_msg(self):
msg = ""

Loading…
Cancel
Save