Default to 10 threads instead of 100.

This commit is contained in:
Bastian Kleineidam 2014-03-01 20:49:06 +01:00
parent 6f205a2574
commit 39df1812c7
2 changed files with 2 additions and 1 deletions

View file

@ -35,6 +35,7 @@ Changes:
Closes: GH bug #424
- checking: Disable twill page refreshing.
Closes: GH bug #423
- checking: The default number of checking threads is 10 now instead of 100.
Fixes:
- logging: Status was printed every second regardless of the

View file

@ -145,7 +145,7 @@ class Configuration (dict):
self["nntpserver"] = os.environ.get("NNTP_SERVER", None)
self["proxy"] = urllib.getproxies()
self["sslverify"] = True
self["threads"] = 100
self["threads"] = 10
self["timeout"] = 60
self["aborttimeout"] = 300
self["recursionlevel"] = -1