[sonic-cfggen]: Fix a wrong attribute in VXLAN_TUNNEL (#3225)

Change 'source_ip' to 'src_ip'
This commit is contained in:
Wei Bai 2019-07-27 14:47:04 +08:00 committed by Shuotian Cheng
parent 45855901e2
commit 2081c2e388
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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'}}")