mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-03-17 06:20:27 +00:00
Default to 10 threads instead of 100.
This commit is contained in:
parent
6f205a2574
commit
39df1812c7
2 changed files with 2 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue