2
0
mirror of https://github.com/openvswitch/ovs synced 2025-08-31 14:25:26 +00:00
Files
ovs/python
Ilya Maximets 0d21dbc247 python: stream: Fix unlink attempt for ptcp IP address.
While creating passive TCP connections the library stores part of the
connection method as a bind path regardless of it being a path.  And
then it may attempt to unlink it on close:

 fatal-signal | WARN | could not unlink "27.0.0.1:58866"
                       (No such file or directory)

Unlinking only makes sense for unix sockets, not TCP, so the variable
should only be initialized for "punix" case.  It's not a big problem
since those files are unlikely to exist, but it generates strange
warnings in the logs.

Fixes: af35823711 ("python: Add TCP passive-mode to IDL.")
Acked-by: Eelco Chaudron <echaudro@redhat.com>
Signed-off-by: Ilya Maximets <i.maximets@ovn.org>
2025-03-26 14:27:48 +01:00
..
2021-06-22 21:29:57 +02:00
2023-07-14 22:24:03 +02:00

Python library for working with Open vSwitch