diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2013-05-16 23:02:54 +0100 |
---|---|---|
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2013-05-16 23:02:54 +0100 |
commit | 3a8f510b52b5287b2cba2b720f657073b8ffc719 (patch) | |
tree | 5202b21b8582dba11ecb0814c78f54d4ec6e0914 /Lib/logging/handlers.py | |
parent | 43b2ab96bc63f037bd7e1504241c2feaef684fc6 (diff) | |
parent | 862b15e7d0402d3aabe224ca33e45f4e9aa6dd00 (diff) | |
download | cpython-git-3a8f510b52b5287b2cba2b720f657073b8ffc719.tar.gz |
Closes #17981: Merged fix from 3.3.
Diffstat (limited to 'Lib/logging/handlers.py')
-rw-r--r-- | Lib/logging/handlers.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/logging/handlers.py b/Lib/logging/handlers.py index bed09f05d0..f1ddbb5eda 100644 --- a/Lib/logging/handlers.py +++ b/Lib/logging/handlers.py @@ -876,6 +876,7 @@ class SysLogHandler(logging.Handler): try: self.socket.send(msg) except OSError: + self.socket.close() self._connect_unixsocket(self.address) self.socket.send(msg) elif self.socktype == socket.SOCK_DGRAM: |