From 97e185bd201ecedd410e6007acc44e6ccf97a234 Mon Sep 17 00:00:00 2001 From: Fawad Khaliq Date: Sun, 16 Mar 2014 20:51:16 -0700 Subject: [PATCH] Added missing l3_update call in update_network Change-Id: Id907ae692140fd52762ef6ac4fc1613897eb5065 Closes-Bug: #1259125 --- neutron/plugins/plumgrid/plumgrid_plugin/plumgrid_plugin.py | 1 + 1 file changed, 1 insertion(+) 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")) -- 2.45.2