From 60169accb2067f42512a18099923ae783fcb9444 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Wed, 9 Apr 2003 14:46:45 +0000 Subject: [PATCH] Raised 'too many exceptions raised in too little time' limit to 10 exceptions in .5 seconds. --- src/debug.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/debug.py b/src/debug.py index 6b56138f8..f8e7d23eb 100644 --- a/src/debug.py +++ b/src/debug.py @@ -138,7 +138,7 @@ def recoverableException(): if issubclass(e.__class__, exn): raise lastTimes.append(time.time()) - if lastTimes[-1] - lastTimes[0] < 0.20: + if lastTimes[-1] - lastTimes[0] < 0.50: msg('Too many exceptions too quickly. Bailing out.', 'high') exit() else: