You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After the change in behavior of the Transport object in the commit 4420185, NetNS leaks FDs.
After the commit Transport.close() doesn't close the file_obj associated with it. We are supposed to close it manually after the call to close(). This leads to a FD leak in the __init__ function.
The text was updated successfully, but these errors were encountered:
ndesh26
pushed a commit
to ndesh26/pyroute2
that referenced
this issue
Jul 29, 2019
With the change in the behavior of the Transport object, we now need to
close the file_obj associated with the Transport object manually.
Closessvinota#623
After the change in behavior of the
Transport
object in the commit 4420185, NetNS leaks FDs.After the commit
Transport.close()
doesn't close thefile_obj
associated with it. We are supposed to close it manually after the call toclose()
. This leads to a FD leak in the__init__
function.The text was updated successfully, but these errors were encountered: