summaryrefslogtreecommitdiff
path: root/src/couchdb/couch_batch_save_sup.erl
diff options
context:
space:
mode:
Diffstat (limited to 'src/couchdb/couch_batch_save_sup.erl')
-rw-r--r--src/couchdb/couch_batch_save_sup.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/couchdb/couch_batch_save_sup.erl b/src/couchdb/couch_batch_save_sup.erl
index 42cf1aba..678e0a89 100644
--- a/src/couchdb/couch_batch_save_sup.erl
+++ b/src/couchdb/couch_batch_save_sup.erl
@@ -27,9 +27,9 @@ init([]) ->
exit(Self, reload_config)
end),
- BatchSize = list_to_integer(couch_config:get("couchdb",
+ BatchSize = list_to_integer(couch_config:get("couchdb",
"batch_save_size","1000")),
- BatchInterval = list_to_integer(couch_config:get("couchdb",
+ BatchInterval = list_to_integer(couch_config:get("couchdb",
"batch_save_interval","1000")),
Batch = {batch, {couch_batch_save, start_link, [BatchSize, BatchInterval]},