small fix

This commit is contained in:
ManyTheFish
2025-09-29 17:45:56 +02:00
parent 0e1ff2edbb
commit 89befc8b7d
2 changed files with 5 additions and 4 deletions

View File

@@ -303,7 +303,8 @@ impl IndexScheduler {
let mut wtxn = env.write_txn()?;
let features = features::FeatureData::new(&env, &mut wtxn, options.instance_features)?;
let features =
features::FeatureData::new(&env, &mut wtxn, options.instance_features.clone())?;
let queue = Queue::new(&env, &mut wtxn, &options)?;
let index_mapper = IndexMapper::new(&env, &mut wtxn, &options, budget)?;
let chat_settings = env.create_database(&mut wtxn, Some(db_name::CHAT_SETTINGS))?;