mirror of https://github.com/python/cpython
amk pointed out that syslog may use UDP or TCP sockets.
Update to try UDP, if that fails, try TCP.
This commit is contained in:
parent
cc4c50c0ed
commit
f4cdb474b6
|
@ -349,6 +349,12 @@ class SysLogHandler(logging.Handler):
|
|||
self.facility = facility
|
||||
if type(address) == types.StringType:
|
||||
self.socket = socket.socket(socket.AF_UNIX, socket.SOCK_DGRAM)
|
||||
# syslog may require either DGRAM or STREAM sockets
|
||||
try:
|
||||
self.socket.connect(address)
|
||||
except socket.error:
|
||||
self.socket.close()
|
||||
self.socket = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
|
||||
self.socket.connect(address)
|
||||
self.unixsocket = 1
|
||||
else:
|
||||
|
|
Loading…
Reference in New Issue