소스 검색

Added ConnectionResetError exception handling while sending response

master
Dirk Alders 4 달 전
부모
커밋
ffe6b2bf3b
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      __init__.py

+ 1
- 1
__init__.py 파일 보기

@@ -248,7 +248,7 @@ class tcp_base(object):
248 248
                     self.__connection__.sendall(data)
249 249
                 except BlockingIOError:
250 250
                     time.sleep(.1)  # try again till timeout exceeds
251
-                except BrokenPipeError:
251
+                except (BrokenPipeError, ConnectionResetError) as e:
252 252
                     self.logger.exception('%s Exception while sending data', self.__log_prefix__())
253 253
                     self.__connection_lost__()
254 254
                     return False

Loading…
취소
저장