From: Fawad Khaliq Date: Mon, 17 Mar 2014 03:51:16 +0000 (-0700) Subject: Added missing l3_update call in update_network X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=97e185bd201ecedd410e6007acc44e6ccf97a234;p=openstack-build%2Fneutron-build.git Added missing l3_update call in update_network Change-Id: Id907ae692140fd52762ef6ac4fc1613897eb5065 Closes-Bug: #1259125 --- diff --git a/neutron/plugins/plumgrid/plumgrid_plugin/plumgrid_plugin.py b/neutron/plugins/plumgrid/plumgrid_plugin/plumgrid_plugin.py index a01d833bd..2e41aadae 100644 --- a/neutron/plugins/plumgrid/plumgrid_plugin/plumgrid_plugin.py +++ b/neutron/plugins/plumgrid/plumgrid_plugin/plumgrid_plugin.py @@ -133,6 +133,7 @@ class NeutronPluginPLUMgridV2(db_base_plugin_v2.NeutronDbPluginV2, net_db = super( NeutronPluginPLUMgridV2, self).update_network(context, net_id, network) + self._process_l3_update(context, net_db, network['network']) try: LOG.debug(_("PLUMgrid Library: update_network() called"))