Less verbose error handling

- if socket sending results in EHOSTUNREACH or ETIMEDOUT, don't show
  backtrace
This commit is contained in:
Peter Šurda 2017-02-27 15:27:46 +01:00
parent 8579d8b3b5
commit 124b321b8c
Signed by untrusted user: PeterSurda
GPG Key ID: 0C5F50C0B5F37D87
1 changed files with 2 additions and 2 deletions

View File

@ -105,8 +105,8 @@ class sendDataThread(threading.Thread):
select.select([], [self.sslSock if isSSL else self.sock], [], 10)
logger.debug('sock.recv retriable error')
continue
if e.errno in (errno.EPIPE, errno.ECONNRESET):
logger.debug('Connection error (EPIPE/ECONNRESET)')
if e.errno in (errno.EPIPE, errno.ECONNRESET, errno.EHOSTUNREACH, errno.ETIMEDOUT):
logger.debug('Connection error (EPIPE/ECONNRESET/EHOSTUNREACH/ETIMEDOUT)')
return False
raise
throttle.SendThrottle().wait(amountSent)