Revision 646662393331 () - Diff

Link to this snippet: https://friendpaste.com/2ztG8995onyXQGpXrFWZGd
Embed:
1
2
3
4
5
6
7
8
9
10
11
--- a/src/couchdb/couch_config.erl
+++ b/src/couchdb/couch_config.erl
@@ -67,7 +67,7 @@ set(Section, Key, Value) ->
set(Section, Key, Value, Persist) when is_binary(Section) and is_binary(Key) ->
?MODULE:set(?b2l(Section), ?b2l(Key), Value, Persist);
set(Section, Key, Value, Persist) ->
- gen_server:call(?MODULE, {set, Section, Key, Value, Persist}).
+ gen_server:call(?MODULE, {set, Section, Key, Value, Persist}, 60000).
delete(Section, Key) when is_binary(Section) and is_binary(Key) ->