]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Issue #16168: Use specified socket type for domain sockets in SysLogHandler.
authorVinay Sajip <vinay_sajip@yahoo.co.uk>
Tue, 9 Oct 2012 07:17:41 +0000 (08:17 +0100)
committerVinay Sajip <vinay_sajip@yahoo.co.uk>
Tue, 9 Oct 2012 07:17:41 +0000 (08:17 +0100)
Lib/logging/handlers.py

index 19a5f10ed1cd9b1c77123453beb600a17cf0bfeb..dcb7fd20f9618f635979a3847fe00deea51a8674 100644 (file)
@@ -764,18 +764,12 @@ class SysLogHandler(logging.Handler):
         self.formatter = None
 
     def _connect_unixsocket(self, address):
-        self.socket = socket.socket(socket.AF_UNIX, socket.SOCK_DGRAM)
-        # syslog may require either DGRAM or STREAM sockets
+        self.socket = socket.socket(socket.AF_UNIX, self.socktype)
         try:
             self.socket.connect(address)
         except socket.error:
             self.socket.close()
-            self.socket = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
-            try:
-                self.socket.connect(address)
-            except socket.error:
-                self.socket.close()
-                raise
+            raise
 
     # curious: when talking to the unix-domain '/dev/log' socket, a
     #   zero-terminator seems to be required.  this string is placed