kuryr-kubernetes/kuryr_kubernetes/tests/unit
Michał Dulko 1c2320e11e Prevent pyroute2.IPDB threads leaking
pyroute2.IPDB is an interesting entity. It's much more than a simple
interface to `ip` command, as it is more similar to a database process.
When created IPDB object spawns a thread that will be responsible for
updating the object with changes to the underlying OS. Thread stays up
until the user will call `release()` method.

Turns out code in kuryr_kubernetes.cni.binding wasn't taking that into
account and was slowly leaking threads (and possibly processes). This
became apparent when running Kuryr with CNI daemon enabled.

This commit fixes the problem by switching all IPDB usages to context
managers, so `release()` method is called automatically.  Also the IPDB
objects cache is removed as already released IPDB objects cannot be
reused. kuryr_kubernetes.cni.binding modules were missing unit tests,
this commit adds them as well.

Change-Id: I82afda3f217dac56228677bb66703c3d80e5d751
Closes-Bug: 1728996
2017-11-17 12:30:54 +01:00
..
cmd Controller service base 2016-10-04 21:56:50 +03:00
cni Prevent pyroute2.IPDB threads leaking 2017-11-17 12:30:54 +01:00
controller Merge "Avoid neutron calls at recovering precreated ports" 2017-11-08 14:06:07 +00:00
handlers Skip stale K8s events 2017-01-20 04:26:08 +03:00
__init__.py K8s and Neutron clients support 2016-10-03 16:07:03 +00:00
kuryr_fixtures.py Default pod subnet driver and os-vif utils 2016-11-20 12:55:16 +00:00
test_clients.py K8s and Neutron clients support 2016-10-03 16:07:03 +00:00
test_k8s_client.py Enforce E128 pep8 check 2017-06-13 14:22:51 +03:00
test_linux_net_utils.py Cleanup and enforce pep8 checks 2017-06-08 15:36:44 +03:00
test_os_vif_plug_noop.py Add MACVLAN based interfaces for nested containers 2017-06-12 13:14:12 +01:00
test_os_vif_util.py Enforce E128 pep8 check 2017-06-13 14:22:51 +03:00
test_watcher.py Stopping Thread from oslo_service 2017-06-15 09:11:41 +00:00