Fix bug in container image reporting, strip the prefix off when adding image to the registry

This commit is contained in:
Tom Wilkie
2016-03-22 17:21:49 +00:00
parent 88cd85f61c
commit f6835e433c

View File

@@ -230,7 +230,7 @@ func (r *registry) updateImages() error {
for i := range images {
image := &images[i]
r.images[image.ID] = image
r.images[trimImageID(image.ID)] = image
}
return nil