aboutsummaryrefslogtreecommitdiff
path: root/rpkid/rpki/async.py
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2009-07-29 14:04:21 +0000
committerRob Austein <sra@hactrn.net>2009-07-29 14:04:21 +0000
commitc467f935057d9b141a626c9d5c5b377dc0ff4c38 (patch)
tree77e019c1f573a6ac0596509a264ac758f898ea3d /rpkid/rpki/async.py
parent632bcd0e81ac02c0ac567c21275953380c4fe78d (diff)
Massively increase https timeout interval. Enable slow-and-safe
version of async iteration, can look at using fast-and-risky version later on a case-by-case basis if needed. svn path=/rpkid/rpki/async.py; revision=2682
Diffstat (limited to 'rpkid/rpki/async.py')
-rw-r--r--rpkid/rpki/async.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rpkid/rpki/async.py b/rpkid/rpki/async.py
index 00ac3d11..ba817007 100644
--- a/rpkid/rpki/async.py
+++ b/rpkid/rpki/async.py
@@ -42,7 +42,7 @@ class iterator(object):
The termination callback receives no arguments.
"""
- def __init__(self, iterable, item_callback, done_callback, unwind_stack = False):
+ def __init__(self, iterable, item_callback, done_callback, unwind_stack = True):
self.item_callback = item_callback
self.done_callback = done_callback
self.caller_file, self.caller_line, self.caller_function = traceback.extract_stack(limit = 2)[0][0:3]