mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Merge pull request #539 from justone/fix-byparent
- Images: fix ByParent function
This commit is contained in:
commit
7b1ec9ff30
1 changed files with 4 additions and 4 deletions
8
graph.go
8
graph.go
|
@ -253,14 +253,14 @@ func (graph *Graph) WalkAll(handler func(*Image)) error {
|
||||||
func (graph *Graph) ByParent() (map[string][]*Image, error) {
|
func (graph *Graph) ByParent() (map[string][]*Image, error) {
|
||||||
byParent := make(map[string][]*Image)
|
byParent := make(map[string][]*Image)
|
||||||
err := graph.WalkAll(func(image *Image) {
|
err := graph.WalkAll(func(image *Image) {
|
||||||
image, err := graph.Get(image.Parent)
|
parent, err := graph.Get(image.Parent)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if children, exists := byParent[image.Parent]; exists {
|
if children, exists := byParent[parent.Id]; exists {
|
||||||
byParent[image.Parent] = []*Image{image}
|
byParent[parent.Id] = []*Image{image}
|
||||||
} else {
|
} else {
|
||||||
byParent[image.Parent] = append(children, image)
|
byParent[parent.Id] = append(children, image)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
return byParent, err
|
return byParent, err
|
||||||
|
|
Loading…
Add table
Reference in a new issue