summaryrefslogtreecommitdiff
path: root/releasenotes
diff options
context:
space:
mode:
authorLucas Alvares Gomes <lucasagomes@gmail.com>2021-09-23 16:04:00 +0100
committerLucas Alvares Gomes <lucasagomes@gmail.com>2022-08-10 09:44:55 +0100
commit982c22dd46bb651c4c5c614262f1a9d68a96cd70 (patch)
treed396041b55320de0fb9be430a2ec4fe4c79b15da /releasenotes
parent492b68493f1fcc71ac3b09f42f9b97b1aa961521 (diff)
downloadneutron-982c22dd46bb651c4c5c614262f1a9d68a96cd70.tar.gz
[OVN] Fix updating network segmentation ID
The ML2/OVN driver wasn't handling updates to the segmentation ID for a given network. This patch fixes this problem. This patch extends the _update_segmentation_id() method to check on drivers which does not inherits from AgentMechanismDriverBase, which is the case of OVN (which inherits from MechanismDriver). A new method is now called for those drivers to get a list of supported VIF types, called get_supported_vif_types(). Closes-Bug: #1944708 Change-Id: Ibe08bfbc2efc55b9d628cdd0605941b7486186b6 Signed-off-by: Lucas Alvares Gomes <lucasagomes@gmail.com>
Diffstat (limited to 'releasenotes')
-rw-r--r--releasenotes/notes/ovn-update-vlan-id-749d8f17999243f5.yaml7
1 files changed, 7 insertions, 0 deletions
diff --git a/releasenotes/notes/ovn-update-vlan-id-749d8f17999243f5.yaml b/releasenotes/notes/ovn-update-vlan-id-749d8f17999243f5.yaml
new file mode 100644
index 0000000000..870e89e5ed
--- /dev/null
+++ b/releasenotes/notes/ovn-update-vlan-id-749d8f17999243f5.yaml
@@ -0,0 +1,7 @@
+---
+fixes:
+ - |
+ Fixes an issue in the ML2/OVN driver where the network
+ segment tag was not being updated in the OVN Northbound
+ database. For more information, see bug `1944708
+ <https://bugs.launchpad.net/neutron/+bug/1944708>`_.