From: Mohamed Larabi Date: Tue, 12 Nov 2013 16:17:50 +0000 (+0100) Subject: check-hrns: slice_ids needs to be in GetSites return values X-Git-Tag: myplc-5.3-1~5 X-Git-Url: http://git.onelab.eu/?p=myplc.git;a=commitdiff_plain;h=93cb09812f727111bfd0bbdc32d2f94aab5eddb4 check-hrns: slice_ids needs to be in GetSites return values --- diff --git a/bin/check-hrns.py b/bin/check-hrns.py index 49d73e8..8febdee 100755 --- a/bin/check-hrns.py +++ b/bin/check-hrns.py @@ -108,7 +108,7 @@ Example: dry_run=options.show verbose=options.verbose # optimizing : we compute the set of sites only once - sites = GetSites({'peer_id':None},['site_id','login_base','node_ids','person_ids','name','hrn']) + sites = GetSites({'peer_id':None},['site_id','login_base','node_ids','person_ids','name','hrn','slice_ids']) # remove external sites created through SFA sites = [site for site in sites if not site['name'].startswith('sfa:')] sites_by_id = dict ( [ (site['site_id'], site) for site in sites ] )