Message172418
| Author |
vitaly |
| Recipients |
vitaly |
| Date |
2012年10月08日.22:03:03 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1349733783.87.0.737164149869.issue16168@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
_connect_unixsocket() (see below) does not use socktype value that was passed into SysLogHandler.__init__():
def _connect_unixsocket(self, address):
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) |
|
History
|
|---|
| Date |
User |
Action |
Args |
| 2012年10月08日 22:03:03 | vitaly | set | recipients:
+ vitaly |
| 2012年10月08日 22:03:03 | vitaly | set | messageid: <1349733783.87.0.737164149869.issue16168@psf.upfronthosting.co.za> |
| 2012年10月08日 22:03:03 | vitaly | link | issue16168 messages |
| 2012年10月08日 22:03:03 | vitaly | create |
|