aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--scrapersources/postliste-oep4
1 files changed, 2 insertions, 2 deletions
diff --git a/scrapersources/postliste-oep b/scrapersources/postliste-oep
index 5b5b259..c6e6bc6 100644
--- a/scrapersources/postliste-oep
+++ b/scrapersources/postliste-oep
@@ -113,10 +113,10 @@ def cpu_spent():
def cpu_available():
available = resource.getrlimit(resource.RLIMIT_CPU)[0]
- # If no limit is set, assume 10 CPU seconds as the limit to avoid
+ # If no limit is set, assume 20 CPU seconds as the limit to avoid
# running for more than a few minutes every time.
if 0 > available:
- available = 10
+ available = 20
return available
def url_from_id(id):