mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Merge pull request #30773 from aboch/gn
getAllNetworks unnecessary walks all the networks
This commit is contained in:
commit
7c7be84238
1 changed files with 1 additions and 9 deletions
|
@ -96,15 +96,7 @@ func (daemon *Daemon) GetNetworksByID(partialID string) []libnetwork.Network {
|
||||||
|
|
||||||
// getAllNetworks returns a list containing all networks
|
// getAllNetworks returns a list containing all networks
|
||||||
func (daemon *Daemon) getAllNetworks() []libnetwork.Network {
|
func (daemon *Daemon) getAllNetworks() []libnetwork.Network {
|
||||||
c := daemon.netController
|
return daemon.netController.Networks()
|
||||||
list := []libnetwork.Network{}
|
|
||||||
l := func(nw libnetwork.Network) bool {
|
|
||||||
list = append(list, nw)
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
c.WalkNetworks(l)
|
|
||||||
|
|
||||||
return list
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func isIngressNetwork(name string) bool {
|
func isIngressNetwork(name string) bool {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue