neutron: fix neutron-server config.json with VMware

Missing comma in config.json template rendered invalid JSON with VMware
plugin agent.

Closes-Bug: #1939080

Change-Id: I3d0c6421e3da7e1e753b99cf87c32fc238a21523
This commit is contained in:
Mark Goddard 2021-08-09 09:21:46 +01:00
parent d328265216
commit 2c786a0faf
2 changed files with 6 additions and 1 deletions

View File

@ -26,7 +26,7 @@
"owner": "neutron",
"optional": {{ (neutron_plugin_agent not in ['vmware_nsxv', 'vmware_nsxv3', 'vmware_dvs']) | string | lower }},
"perm": "0600"
}{% endif %}
},{% endif %}
{% if check_extra_ml2_plugins is defined and check_extra_ml2_plugins.matched > 0 %}{% for plugin in check_extra_ml2_plugins.files %}
{
"source": "{{ container_config_directory }}/{{ plugin.path | basename }}",

View File

@ -0,0 +1,5 @@
---
fixes:
- |
Fixes an issue with ``config.json`` for ``neutron-server`` when a VMware
plugin agent is used.