From: Tony Mack Date: Mon, 17 Oct 2011 19:48:52 +0000 (-0400) Subject: dont overwrite value of root_auth X-Git-Tag: sfa-1.1-1~90 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=d0f743e245e0bb24d7ed1016bcc6e61d1e558a95;p=sfa.git dont overwrite value of root_auth --- diff --git a/sfa/plc/sfa-import-plc.py b/sfa/plc/sfa-import-plc.py index 3c005881..95793a10 100755 --- a/sfa/plc/sfa-import-plc.py +++ b/sfa/plc/sfa-import-plc.py @@ -172,9 +172,9 @@ def main(): if node_id not in nodes_dict: continue node = nodes_dict[node_id] - root_auth = get_authority(site_hrn) + site_auth = get_authority(site_hrn) site_name = get_leaf(site_hrn) - hrn = hostname_to_hrn(root_auth, site_name, node['hostname']) + hrn = hostname_to_hrn(site_auth, site_name, node['hostname']) if hrn not in existing_hrns or \ (hrn, 'node') not in existing_records: sfaImporter.import_node(hrn, node)