mirror of
https://github.com/matrix-construct/construct
synced 2024-11-29 18:22:50 +01:00
ircd::db: Fix read opts not passing cache=false. (regression 94a6cd0d90
)
This commit is contained in:
parent
30cc6b3bdb
commit
b106fe4c9d
1 changed files with 2 additions and 2 deletions
|
@ -5351,8 +5351,8 @@ ircd::db::make_opts(const gopts &opts)
|
|||
if(opts.pin)
|
||||
ret.pin_data = true;
|
||||
|
||||
if(opts.cache)
|
||||
ret.fill_cache = true;
|
||||
if(!opts.cache)
|
||||
ret.fill_cache = false;
|
||||
|
||||
if(opts.prefix)
|
||||
ret.prefix_same_as_start = true;
|
||||
|
|
Loading…
Reference in a new issue