From 81034140c062de8759dbd0e14e26b4bea3869764 Mon Sep 17 00:00:00 2001 From: Bernardo Damele Date: Wed, 6 Apr 2011 08:15:20 +0000 Subject: [PATCH] Reduced number of threads to 3 when -o is provided --- lib/core/option.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/core/option.py b/lib/core/option.py index 3e26881d5..9d0fc3b71 100644 --- a/lib/core/option.py +++ b/lib/core/option.py @@ -1141,7 +1141,7 @@ def __cleanupOptions(): #conf.predictOutput = True conf.keepAlive = True conf.nullConnection = not conf.textOnly - conf.threads = 4 if conf.threads < 4 else conf.threads + conf.threads = 3 if conf.threads < 3 else conf.threads if conf.tor: conf.proxy = DEFAULT_TOR_PROXY