Add "update_network" implementation to "L3AgentExtension" child classes

Added "update_network" method implementation to all "L3AgentExtension"
child classes. This new method will be added as a new abstract method
in future neutron-lib releases.

Needed-By: https://review.opendev.org/c/openstack/neutron-lib/+/818536
Related-Bug: #1950454
Change-Id: If319a47e65e4052dd3bbfba700819cbb9183a263
This commit is contained in:
Rodolfo Alonso Hernandez 2021-12-02 09:55:06 +00:00
parent 64cedb7d25
commit 883f4f2610
1 changed files with 3 additions and 0 deletions

View File

@ -94,6 +94,9 @@ class VPNAgent(l3_extension.L3AgentExtension):
else:
process.disable()
def update_network(self, context, data):
pass
class L3WithVPNaaS(VPNAgent):