| a | b | |
|---|
| 0 | + | --- a/src/couchdb/couch_config.erl |
|---|
| 0 | + | +++ b/src/couchdb/couch_config.erl |
|---|
| 0 | + | @@ -67,7 +67,7 @@ set(Section, Key, Value) -> |
|---|
| 0 | + | set(Section, Key, Value, Persist) when is_binary(Section) and is_binary(Key) -> |
|---|
| 0 | + | ?MODULE:set(?b2l(Section), ?b2l(Key), Value, Persist); |
|---|
| 0 | + | set(Section, Key, Value, Persist) -> |
|---|
| 0 | + | - gen_server:call(?MODULE, {set, Section, Key, Value, Persist}). |
|---|
| 0 | + | + gen_server:call(?MODULE, {set, Section, Key, Value, Persist}, 60000). |
|---|
| 0 | + | |
|---|
| 0 | + | |
|---|
| 0 | + | delete(Section, Key) when is_binary(Section) and is_binary(Key) -> |
|---|
| ... | |
|---|