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,7 +726,8 @@ class HTTP1ServerConnection(object):
# This exception was already logged.
conn.close()
return
except Exception:
except Exception as e:
if 1 != e.errno:
gen_log.error("Uncaught exception", exc_info=True)
conn.close()
return

View file

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