mirror of
https://github.com/matrix-construct/construct
synced 2024-12-27 07:54:05 +01:00
ircd::db: Move conf item into namespace.
This commit is contained in:
parent
1dc799dffa
commit
7be03dda17
2 changed files with 3 additions and 2 deletions
|
@ -5213,8 +5213,8 @@ ircd::db::make_opts(const gopts &opts)
|
|||
return ret;
|
||||
}
|
||||
|
||||
ircd::conf::item<bool>
|
||||
read_checksum
|
||||
decltype(ircd::db::read_checksum)
|
||||
ircd::db::read_checksum
|
||||
{
|
||||
{ "name", "ircd.db.read.checksum" },
|
||||
{ "default", false }
|
||||
|
|
|
@ -72,6 +72,7 @@ namespace ircd::db
|
|||
// state
|
||||
extern log::log rog;
|
||||
extern conf::item<bool> enable_wal;
|
||||
extern conf::item<bool> read_checksum;
|
||||
extern conf::item<size_t> request_pool_size;
|
||||
extern conf::item<size_t> request_pool_stack_size;
|
||||
extern ctx::pool::opts request_pool_opts;
|
||||
|
|
Loading…
Reference in a new issue