OVSDB application library
eb8a07aacf
Every time I run a large chunk of neutron unit tests, for example: $ tox -e py310 -- neutron.tests.unit.plugins.ml2.drivers I see this warning (it doesn't cause a failure): Captured stderr: ~~~~~~~~~~~~~~~~ .../neutron/.tox/py310/lib/python3.10/site-packages/ovs/db/idl.py:1484: DeprecationWarning: The 'warn' method is deprecated, use 'warning' instead vlog.warn("error parsing column %s in table %s: %s" Looking at the OVS python library code it seems perfectly fine. Backtracking, I was able to find the offending code that actually lived in ovsdbapp. It is a little bit obfuscated as it was re-mapping the OVS library vlog.Vlog.warn() call to log.warn(), but I was able to test my theory by modifying code in my local neutron .tox directory and the warning went away. I was never able to narrow things down to a single test, or class, or file, even running with '--concurrency 1', so I do not know exactly how this code is getting exercised, there could be a test that is not cleaning-up properly, maybe some day we will figure that out. TrivialFix but not TrivialToFind Change-Id: Ic6256b4bab48298fe599b7904e9edb0e35b93ce4 |
||
---|---|---|
doc | ||
ovsdbapp | ||
releasenotes | ||
tools | ||
zuul.d | ||
.gitignore | ||
.gitreview | ||
.pre-commit-config.yaml | ||
.pylintrc | ||
.stestr.conf | ||
bindep.txt | ||
CONTRIBUTING.rst | ||
HACKING.rst | ||
LICENSE | ||
README.rst | ||
requirements.txt | ||
setup.cfg | ||
setup.py | ||
test-requirements.txt | ||
TESTING.rst | ||
tox.ini |
ovsdbapp
A library for creating OVSDB applications
The ovdsbapp library is useful for creating applications that communicate via Open_vSwitch's OVSDB protocol (https://tools.ietf.org/html/rfc7047). It wraps the Python 'ovs' and adds an event loop and friendly transactions.
- Free software: Apache license
- Source: https://opendev.org/openstack/ovsdbapp/
- Bugs: https://bugs.launchpad.net/ovsdbapp
Features:
- An thread-based event loop for using ovs.db.Idl
- Transaction support
- Native OVSDB communication