diff options
author | Filipe David Borba Manana <fdmanana@apache.org> | 2011-08-19 04:51:20 +0000 |
---|---|---|
committer | Filipe David Borba Manana <fdmanana@apache.org> | 2011-08-19 04:51:20 +0000 |
commit | 045fa896188ab3ca8dc55c8e6ac59a0b2dfd92db (patch) | |
tree | 269b7b02284e9561a77c8bef2ce5e4dad597f7aa /src/couchdb/couch_rep_changes_feed.erl | |
parent | 542f2732a4240a737cac02a29e6c58d90571e742 (diff) |
Updated changes feed connect timeout to 30 seconds
This is the timeout used everywhere else. Some users are
constantly unable to replicate since under some scenarios
(namely via SSL) a timeout of 10 seconds is too short.
This is related to a thread in the users mailing list:
http://mail-archives.apache.org/mod_mbox/couchdb-user/201106.mbox/%3CBANLkTik3y-nN1uWMyNgzA_0ZSjxXdcMqQw@mail.gmail.com%3E
git-svn-id: https://svn.apache.org/repos/asf/couchdb/branches/1.1.x@1159501 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/couchdb/couch_rep_changes_feed.erl')
-rw-r--r-- | src/couchdb/couch_rep_changes_feed.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/couchdb/couch_rep_changes_feed.erl b/src/couchdb/couch_rep_changes_feed.erl index 1c298937..a0696bf2 100644 --- a/src/couchdb/couch_rep_changes_feed.erl +++ b/src/couchdb/couch_rep_changes_feed.erl @@ -154,7 +154,7 @@ init([Parent, #http_db{headers = Headers0} = Source, Since, PostProps]) -> end; {ibrowse_async_headers, ReqId, Code, _} -> {stop, {changes_error_code, list_to_integer(Code)}} - after 10000 -> + after 30000 -> {stop, changes_timeout} end; |