summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Lehnardt <jan@apache.org>2017-06-30 11:08:57 +0200
committerJan Lehnardt <jan@apache.org>2017-06-30 11:52:28 +0200
commit3afe3ad22b93c66db84df6739687cc5c693b24fd (patch)
tree5fb0d49d3de9b4a0b53ac2e1822e73e49e334083
parent21f9544346e6d9c907393a254759d5915eb3cc61 (diff)
downloadcouchdb-feat/enable-compaction-daemon-by-default.tar.gz
test: expect compaction daemon to be offfeat/enable-compaction-daemon-by-default
-rwxr-xr-xdev/run3
-rw-r--r--src/couch/test/couchdb_compaction_daemon_tests.erl5
2 files changed, 5 insertions, 3 deletions
diff --git a/dev/run b/dev/run
index 8af3ac416..36267ce13 100755
--- a/dev/run
+++ b/dev/run
@@ -188,7 +188,8 @@ def setup_configs(ctx):
"cluster_port": cluster_port,
"backend_port": backend_port,
"fauxton_root": fauxton_root,
- "uuid": "fake_uuid_for_dev"
+ "uuid": "fake_uuid_for_dev",
+ "_default": ""
}
write_config(ctx, node, env)
diff --git a/src/couch/test/couchdb_compaction_daemon_tests.erl b/src/couch/test/couchdb_compaction_daemon_tests.erl
index fdb6654b4..908f1d330 100644
--- a/src/couch/test/couchdb_compaction_daemon_tests.erl
+++ b/src/couch/test/couchdb_compaction_daemon_tests.erl
@@ -23,8 +23,9 @@
start() ->
Ctx = test_util:start_couch(),
- config:set("compaction_daemon", "check_interval", "3", false),
- config:set("compaction_daemon", "min_file_size", "100000", false),
+ ok = config:set("compaction_daemon", "check_interval", "3", false),
+ ok = config:set("compaction_daemon", "min_file_size", "100000", false),
+ ok = config:delete("compactions", "_default", false),
ok = meck:new(?MODS_TO_MOCK, [passthrough]),
Ctx.