Remove logging for EINTR in IOLoop, since this is not really an error.
This commit is contained in:
parent
f73f135d2d
commit
d677b158dd
|
@ -252,7 +252,6 @@ class IOLoop(object):
|
|||
if (getattr(e, 'errno', None) == errno.EINTR or
|
||||
(isinstance(getattr(e, 'args', None), tuple) and
|
||||
len(e.args) == 2 and e.args[0] == errno.EINTR)):
|
||||
logging.warning("Interrupted system call", exc_info=1)
|
||||
continue
|
||||
else:
|
||||
raise
|
||||
|
|
Loading…
Reference in New Issue