diff options
author | Rob Austein <sra@hactrn.net> | 2009-07-29 14:04:21 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2009-07-29 14:04:21 +0000 |
commit | c467f935057d9b141a626c9d5c5b377dc0ff4c38 (patch) | |
tree | 77e019c1f573a6ac0596509a264ac758f898ea3d /rpkid/rpki/async.py | |
parent | 632bcd0e81ac02c0ac567c21275953380c4fe78d (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.py | 2 |
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] |