From 101e63f5937bd6216adf3109835682d39eaf30f5 Mon Sep 17 00:00:00 2001 From: Madhu Venugopal Date: Tue, 9 Feb 2016 17:00:31 -0800 Subject: [PATCH] getNetworksFromStore should return all valid networks Signed-off-by: Madhu Venugopal --- libnetwork/store.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libnetwork/store.go b/libnetwork/store.go index bd39638b3c..4e639c4761 100644 --- a/libnetwork/store.go +++ b/libnetwork/store.go @@ -104,7 +104,8 @@ func (c *controller) getNetworksForScope(scope string) ([]*network, error) { ec := &endpointCnt{n: n} err = store.GetObject(datastore.Key(ec.Key()...), ec) if err != nil { - return nil, fmt.Errorf("could not find endpoint count key %s for network %s while listing: %v", datastore.Key(ec.Key()...), n.Name(), err) + log.Warnf("Could not find endpoint count key %s for network %s while listing: %v", datastore.Key(ec.Key()...), n.Name(), err) + continue } n.epCnt = ec