From 39df1812c73636d910ebcf9d9e19cdd9e4a401d5 Mon Sep 17 00:00:00 2001 From: Bastian Kleineidam Date: Sat, 1 Mar 2014 20:49:06 +0100 Subject: [PATCH] Default to 10 threads instead of 100. --- doc/changelog.txt | 1 + linkcheck/configuration/__init__.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/changelog.txt b/doc/changelog.txt index 2f0cf038..f9eefef7 100644 --- a/doc/changelog.txt +++ b/doc/changelog.txt @@ -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 diff --git a/linkcheck/configuration/__init__.py b/linkcheck/configuration/__init__.py index 9167fd6b..88d761df 100644 --- a/linkcheck/configuration/__init__.py +++ b/linkcheck/configuration/__init__.py @@ -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