Fix improperly-renamed variable in set_blocking_signal_threshold

This commit is contained in:
Ben Darnell 2010-09-18 13:22:30 -07:00
parent 81a3eae5e6
commit 9f529b8986
1 changed files with 3 additions and 3 deletions
tornado

View File

@ -178,8 +178,8 @@ class IOLoop(object):
logging.error("set_blocking_signal_threshold requires a signal module " logging.error("set_blocking_signal_threshold requires a signal module "
"with the setitimer method") "with the setitimer method")
return return
self._blocking_signal_threshold = s self._blocking_signal_threshold = seconds
if s is not None: if seconds is not None:
signal.signal(signal.SIGALRM, signal.signal(signal.SIGALRM,
action if action is not None else signal.SIG_DFL) action if action is not None else signal.SIG_DFL)
@ -187,7 +187,7 @@ class IOLoop(object):
"""Logs a stack trace if the ioloop is blocked for more than s seconds. """Logs a stack trace if the ioloop is blocked for more than s seconds.
Equivalent to set_blocking_signal_threshold(seconds, self.log_stack) Equivalent to set_blocking_signal_threshold(seconds, self.log_stack)
""" """
self.set_blocking_signal_threshold(s, self.log_stack) self.set_blocking_signal_threshold(seconds, self.log_stack)
def log_stack(self, signal, frame): def log_stack(self, signal, frame):
"""Signal handler to log the stack trace of the current thread. """Signal handler to log the stack trace of the current thread.