OPTION(keyvaluestore_queue_max_ops, OPT_INT, 50)
OPTION(keyvaluestore_queue_max_bytes, OPT_INT, 100 << 20)
-OPTION(keyvaluestore_check_backend, OPT_BOOL, 0) // Expensive debugging check on sync
+OPTION(keyvaluestore_debug_check_backend, OPT_BOOL, 0) // Expensive debugging check on sync
OPTION(keyvaluestore_op_threads, OPT_INT, 2)
OPTION(keyvaluestore_op_thread_timeout, OPT_INT, 60)
OPTION(keyvaluestore_op_thread_suicide_timeout, OPT_INT, 180)
}
stringstream err2;
- if (g_conf->keyvaluestore_check_backend && !dbomap->check(err2)) {
+ if (g_conf->keyvaluestore_debug_check_backend && !dbomap->check(err2)) {
derr << err2.str() << dendl;;
delete dbomap;
ret = -EINVAL;