2018-07-08 17:05:35 +03:00
|
|
|
---
|
|
|
|
fixes:
|
|
|
|
- |
|
2019-04-23 19:40:06 +08:00
|
|
|
Patch https://review.opendev.org/#/c/499575/ introduced
|
2018-07-08 17:05:35 +03:00
|
|
|
support creating Neutron port with certain capabilities.
|
|
|
|
Currently capabilities list interpreted as string this change
|
|
|
|
fix it.
|
|
|
|
|
|
|
|
tempest.conf
|
|
|
|
[network]
|
|
|
|
port_profile = capabilities:[switchdev]
|
|
|
|
|
|
|
|
result:
|
|
|
|
{'capabilities':'[switchdev]'}
|
|
|
|
|
|
|
|
expected:
|
|
|
|
{'capabilities': ['switchdev']}
|