Get the FWaaS gate working again by adding the required constructor arg
to L3AgentExtensionAPI. Also bumps up neutron-lib to the latest.

Change-Id: I62d70e8d93cae5a27c8722f69407113035d032bc
This commit is contained in:
Boden R 2019-05-21 12:06:31 -06:00
parent f909a2ee6f
commit de49260304
4 changed files with 7 additions and 7 deletions

View File

@ -1,7 +1,8 @@
# The order of packages is significant, because pip processes them in the order
# of appearance. Changing the order has an impact on the overall integration
# process, which may cause wedges in the gate later.
sphinx!=1.6.6,!=1.6.7,>=1.6.2 # BSD
sphinx!=1.6.6,!=1.6.7,>=1.6.2,<2.0.0;python_version=='2.7' # BSD
sphinx!=1.6.6,!=1.6.7,>=1.6.2;python_version>='3.4' # BSD
sphinxcontrib-apidoc>=0.2.0 # BSD
sphinxmark>=0.1.14 # Apache-2.0
openstackdocstheme>=1.18.1 # Apache-2.0

View File

@ -51,7 +51,7 @@ msgpack-python==0.4.0
munch==2.1.0
netaddr==0.7.18
netifaces==0.10.4
neutron-lib==1.25.0
neutron-lib==1.26.0
neutron==14.0.0.0b3
openstackdocstheme==1.18.1
openstacksdk==0.11.2
@ -125,8 +125,7 @@ Routes==2.3.1
simplejson==3.5.1
six==1.10.0
snowballstemmer==1.2.1
Sphinx==1.6.5
sphinxcontrib-websupport==1.0.1
sphinx==1.6.5
sqlalchemy-migrate==0.11.0
SQLAlchemy==1.2.0
sqlparse==0.2.2

View File

@ -323,7 +323,7 @@ class TestFWaaSL3AgentExtension(base.BaseTestCase):
ri = self._prepare_router_data()
ri.internal_ports = ports
router_info = {ri.router_id: ri}
api_object = l3_agent_api.L3AgentExtensionAPI(router_info)
api_object = l3_agent_api.L3AgentExtensionAPI(router_info, None)
self.api.consume_api(api_object)
fw_port_ids = port_ids
@ -342,7 +342,7 @@ class TestFWaaSL3AgentExtension(base.BaseTestCase):
ri.internal_ports = ports
router_info = {}
router_info[ri.router_id] = ri
api_object = l3_agent_api.L3AgentExtensionAPI(router_info)
api_object = l3_agent_api.L3AgentExtensionAPI(router_info, None)
self.api.consume_api(api_object)
fw_port_ids = port_ids
ports_for_fw_expected = [(ri, port_ids)]

View File

@ -8,7 +8,7 @@ netaddr>=0.7.18 # BSD
SQLAlchemy>=1.2.0 # MIT
alembic>=0.8.10 # MIT
six>=1.10.0 # MIT
neutron-lib>=1.25.0 # Apache-2.0
neutron-lib>=1.26.0 # Apache-2.0
os-ken >= 0.3.0 # Apache-2.0
oslo.config>=5.2.0 # Apache-2.0
oslo.db>=4.37.0 # Apache-2.0