Update change to suppress reporting of Tornado exception error 1 to updated package (ref:hacks.txt).

This commit is contained in:
JackDandy 2016-09-30 23:47:23 +01:00
parent 68446ea5d6
commit 7dcf2022e3
2 changed files with 5 additions and 3 deletions

View file

@ -726,8 +726,9 @@ class HTTP1ServerConnection(object):
# This exception was already logged.
conn.close()
return
except Exception:
gen_log.error("Uncaught exception", exc_info=True)
except Exception as e:
if 1 != e.errno:
gen_log.error("Uncaught exception", exc_info=True)
conn.close()
return
if not ret:

View file

@ -648,7 +648,8 @@ class BaseIOStream(object):
except UnsatisfiableReadError:
raise
except Exception as e:
gen_log.warning("error on read: %s" % e)
if 1 != e.errno:
gen_log.warning("error on read: %s" % e)
self.close(exc_info=True)
return
if pos is not None: