You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by wo...@apache.org on 2017/07/05 16:59:45 UTC

[couchdb] branch master updated: Fix mismatch between MAX_DBS_OPEN and default.ini

This is an automated email from the ASF dual-hosted git repository.

wohali pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/couchdb.git


The following commit(s) were added to refs/heads/master by this push:
     new 736e732  Fix mismatch between MAX_DBS_OPEN and default.ini
736e732 is described below

commit 736e732ac734bacd290b894a994eed7eb4bc2dd5
Author: Joan Touzet <jo...@atypical.net>
AuthorDate: Tue Jul 4 16:03:38 2017 -0400

    Fix mismatch between MAX_DBS_OPEN and default.ini
    
    Closes #636
---
 src/couch/src/couch_server.erl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/couch/src/couch_server.erl b/src/couch/src/couch_server.erl
index 26c6c77..a115125 100644
--- a/src/couch/src/couch_server.erl
+++ b/src/couch/src/couch_server.erl
@@ -28,7 +28,7 @@
 
 -include_lib("couch/include/couch_db.hrl").
 
--define(MAX_DBS_OPEN, 100).
+-define(MAX_DBS_OPEN, 500).
 -define(RELISTEN_DELAY, 5000).
 
 -record(server,{

-- 
To stop receiving notification emails like this one, please contact
['"commits@couchdb.apache.org" <co...@couchdb.apache.org>'].