diff options
author | Jan Lehnardt <jan@apache.org> | 2010-06-24 16:05:50 +0000 |
---|---|---|
committer | Jan Lehnardt <jan@apache.org> | 2010-06-24 16:05:50 +0000 |
commit | 2160d988b71b4f496dc1018c791dc698027a36c1 (patch) | |
tree | 9b600e37ca0cc9028d7ff456263aeec9266326d4 /src | |
parent | bb7575d2cdc791f31c09181ce9a4c82559629564 (diff) |
wait forever on large ini files
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@957599 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src')
-rw-r--r-- | src/couchdb/couch_config.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/couchdb/couch_config.erl b/src/couchdb/couch_config.erl index d2ffda69..be53e3a3 100644 --- a/src/couchdb/couch_config.erl +++ b/src/couchdb/couch_config.erl @@ -44,7 +44,7 @@ stop() -> all() -> - lists:sort(gen_server:call(?MODULE, all)). + lists:sort(gen_server:call(?MODULE, all, infinity)). get(Section) when is_binary(Section) -> |