From 0523a5494058f9ffc326966bc2a44501af909d8c Mon Sep 17 00:00:00 2001 From: Andy Bavier Date: Mon, 8 Feb 2010 16:50:36 +0000 Subject: [PATCH] Don't advertise peer nodes in the RSpec --- sfa/plc/network.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) -- 2.43.0