From: Andy Bavier Date: Mon, 8 Feb 2010 16:50:36 +0000 (+0000) Subject: Don't advertise peer nodes in the RSpec X-Git-Tag: sfa-0.9-11~143 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;ds=sidebyside;h=0523a5494058f9ffc326966bc2a44501af909d8c;p=sfa.git Don't advertise peer nodes in the RSpec --- diff --git a/sfa/plc/network.py b/sfa/plc/network.py index ffa643fb..c6dad6ec 100644 --- a/sfa/plc/network.py +++ b/sfa/plc/network.py @@ -454,7 +454,7 @@ class Network: """ def get_sites(self, api): tmp = [] - for site in api.plshell.GetSites(api.plauth): + for site in api.plshell.GetSites(api.plauth, {'peer_id': None}): t = site['site_id'], Site(self, site) tmp.append(t) return dict(tmp) @@ -465,7 +465,7 @@ class Network: """ def get_nodes(self, api): tmp = [] - for node in api.plshell.GetNodes(api.plauth): + for node in api.plshell.GetNodes(api.plauth, {'peer_id': None}): t = node['node_id'], Node(self, node) tmp.append(t) return dict(tmp)