diff options
author | lnu <lnu@f70e237a-67f3-0310-a06c-d2b8a7116972> | 2007-10-03 18:29:41 +0000 |
---|---|---|
committer | lnu <lnu@f70e237a-67f3-0310-a06c-d2b8a7116972> | 2007-10-03 18:29:41 +0000 |
commit | f38cb10a99b5e999ad21a193ef97f22c032e727f (patch) | |
tree | 17efefd85ea4e6fd8c36bcda7eed82a7be9596a9 | |
parent | e2e4e936f02b6af80ae4890520c66769f12c87a3 (diff) | |
download | feed2imap-f38cb10a99b5e999ad21a193ef97f22c032e727f.tar.gz feed2imap-f38cb10a99b5e999ad21a193ef97f22c032e727f.tar.bz2 feed2imap-f38cb10a99b5e999ad21a193ef97f22c032e727f.zip |
reduce http timeout
git-svn-id: svn+ssh://svn.gna.org/svn/feed2imap/trunk/feed2imap@131 f70e237a-67f3-0310-a06c-d2b8a7116972
Diffstat (limited to '')
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | lib/feed2imap/httpfetcher.rb | 2 |
2 files changed, 5 insertions, 2 deletions
@@ -3,9 +3,10 @@ Feed2Imap 0.9.2 (XX/10/2007) * resynchronized rubyimap.rb with stdlib. Might fix Debian bug #405070. * upload items in reverse order, to upload the older first Closes Gna bug #8986. Thanks go do Rial Juan for the patch. -* Don't allow more than 8 fetchers to run at the same time. - 8 should be a reasonable default for everybody. +* Don't allow more than 16 fetchers to run at the same time. + 16 should be a reasonable default for everybody. Closes Gna #9032. +* Reduce the default HTTP timeout to 30s. Feed2Imap 0.9.1 (15/05/2007) ============================ diff --git a/lib/feed2imap/httpfetcher.rb b/lib/feed2imap/httpfetcher.rb index aab2d4e..2438994 100644 --- a/lib/feed2imap/httpfetcher.rb +++ b/lib/feed2imap/httpfetcher.rb @@ -49,6 +49,8 @@ class HTTPFetcher proxy_port, proxy_user, proxy_pass ).new(uri.host, uri.port) + http.read_timeout = 30 # should be enough for everybody... + http.open_timeout = 30 if uri.scheme == 'https' http.use_ssl = true http.verify_mode = OpenSSL::SSL::VERIFY_NONE |