]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Remove logging for EINTR in IOLoop, since this is not really an error.
authorBen Darnell <ben@bendarnell.com>
Fri, 17 Dec 2010 21:42:33 +0000 (13:42 -0800)
committerBen Darnell <ben@bendarnell.com>
Fri, 17 Dec 2010 21:42:33 +0000 (13:42 -0800)
tornado/ioloop.py

index 666257c9955e5f743713da7dcc1cc3952265ca23..70e2155dd3cfebcbbc0d56f0784f19ba9b2c95c6 100644 (file)
@@ -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