X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=python%2Fovs%2Fsocket_util.py;h=d00d3989b699c07f791417c61f9e7245942f6133;hb=47284b1fc6fe84a9b5b43b49bef868e4eb230cd1;hp=0a26c5de6164bf6fa68443412b86c9b43a3f23d2;hpb=eaae5809c0115635b600043d35b4233572228e15;p=openvswitch diff --git a/python/ovs/socket_util.py b/python/ovs/socket_util.py index 0a26c5de..d00d3989 100644 --- a/python/ovs/socket_util.py +++ b/python/ovs/socket_util.py @@ -70,11 +70,7 @@ def make_unix_socket(style, nonblock, bind_path, connect_path): except socket.error, e: sock.close() if bind_path is not None: - try: - os.unlink(bind_path) - except OSError, e: - pass - ovs.fatal_signal.add_file_to_unlink(bind_path) + ovs.fatal_signal.unlink_file_now(bind_path) return get_exception_errno(e), None