From efec8fc153e143068dff6ef3ac02ef722677b045 Mon Sep 17 00:00:00 2001 From: Rodolfo Alonso Hernandez Date: Tue, 11 Feb 2020 13:56:59 +0000 Subject: [PATCH] Reduce the VLAN/tunneled ranges in fullstack tests Reduce the number of VLAN and tunneled network ranges (GRE, VXLAN) to 30 tags, in fullstack tests. This will reduce the amount of time spent, during the Neutron server start, in the VLAN and tunnel drivers initialization. Partial-Bug: #1862178 Change-Id: I7ae82d163c46bbc3ee7430293555c66fbda17b08 --- neutron/tests/fullstack/resources/config.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/neutron/tests/fullstack/resources/config.py b/neutron/tests/fullstack/resources/config.py index 0b698c7099e..318cbec14ce 100644 --- a/neutron/tests/fullstack/resources/config.py +++ b/neutron/tests/fullstack/resources/config.py @@ -173,13 +173,13 @@ class ML2ConfigFixture(ConfigFixture): 'mechanism_drivers': mechanism_drivers, }, 'ml2_type_vlan': { - 'network_vlan_ranges': PHYSICAL_NETWORK_NAME + ':1000:2999', + 'network_vlan_ranges': PHYSICAL_NETWORK_NAME + ':1000:1029', }, 'ml2_type_gre': { - 'tunnel_id_ranges': '1:1000', + 'tunnel_id_ranges': '1:30', }, 'ml2_type_vxlan': { - 'vni_ranges': '1001:2000', + 'vni_ranges': '1001:1030', }, })