Skip to content

Commit

Permalink
Merge pull request #1216 from zhaoqin-github/v212.6.7-dev
Browse files Browse the repository at this point in the history
[OPENSTACK-2897] Add debug log of loading network data (212.6.7)
  • Loading branch information
zhaoqin-github committed Sep 27, 2023
2 parents 35a5262 + 5aab234 commit 3aed949
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
12 changes: 12 additions & 0 deletions docs/RELEASE-NOTES.rst
Expand Up @@ -2,6 +2,18 @@

.. _Release Notes:

Release Notes
=============
v212.6.7.2 (Pike)
--------------

Added Functionality
```````````````````

Bug Fixes
`````````
* [OPENSTACK-2897] Add debug log of loading network data

Release Notes
=============
v212.6.7.1 (Pike)
Expand Down
2 changes: 1 addition & 1 deletion f5lbaasdriver/__init__.py
@@ -1 +1 @@
__version__ = "212.6.7.1"
__version__ = "212.6.7.2"
3 changes: 3 additions & 0 deletions f5lbaasdriver/v2/bigip/service_builder.py
Expand Up @@ -202,6 +202,9 @@ def _get_network(self, context, network_id):
context,
network_id
)
LOG.debug("Network %s obtained from core plugin is: %s",
network_id, network)

if 'provider:network_type' not in network:
network['provider:network_type'] = 'undefined'
if 'provider:segmentation_id' not in network:
Expand Down

0 comments on commit 3aed949

Please sign in to comment.