Package: python-eventlet / 0.9.16-3
Metadata
Package | Version | Patches format |
---|---|---|
python-eventlet | 0.9.16-3 | 3.0 (quilt) |
Patch series
view the series filePatch | File delta | Description |
---|---|---|
retry on timeout | (download) |
eventlet/greenio.py |
102 72 + 30 - 0 ! |
if an operation times out, try one last time. This addresses a problem where a timeout fires even though the connection was actually correctly established. |
threading leak | (download) |
eventlet/green/threading.py |
109 108 + 1 - 0 ! |
monkey patch threading.current_thread() as well Patching thread.get_ident() but not threading.current_thread() can result in _DummyThread objects being created. These objects will never be garbage collected and will leak memory. In a long running process (like a daemon), this can result in a pretty significant memory leak if it uses green threads regularly. |
1