[sonic-cfggen]: Fix a wrong attribute in VXLAN_TUNNEL (#3225)
Change 'source_ip' to 'src_ip'
This commit is contained in:
parent
45855901e2
commit
2081c2e388
@ -448,7 +448,7 @@ def parse_spine_chassis_fe(results, vni, lo_intfs, phyport_intfs, pc_intfs, pc_m
|
||||
break
|
||||
|
||||
results['VXLAN_TUNNEL'] = {chassis_vxlan_tunnel: {
|
||||
'source_ip': lo_addr
|
||||
'src_ip': lo_addr
|
||||
}}
|
||||
|
||||
# Vnet information
|
||||
|
@ -69,4 +69,4 @@ class TestCfgGenT2ChassisFe(TestCase):
|
||||
def test_minigraph_t2_chassis_fe_vxlan(self):
|
||||
argument = '-m "' + self.sample_graph_t2_chassis_fe + '" -p "' + self.t2_chassis_fe_port_config + '" -v "VXLAN_TUNNEL"'
|
||||
output = self.run_script(argument)
|
||||
self.assertEqual(output.strip(), "{'TunnelInt': {'source_ip': '4.0.0.0'}}")
|
||||
self.assertEqual(output.strip(), "{'TunnelInt': {'src_ip': '4.0.0.0'}}")
|
||||
|
Reference in New Issue
Block a user