From 74a305fa0f722dd720f0be565db4b6716801daf1 Mon Sep 17 00:00:00 2001 From: Tamo Date: Thu, 18 Sep 2025 16:11:01 +0200 Subject: [PATCH] use the CELLULITE constant --- crates/milli/src/index.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/milli/src/index.rs b/crates/milli/src/index.rs index 2ca6cd372..d5f5a45dc 100644 --- a/crates/milli/src/index.rs +++ b/crates/milli/src/index.rs @@ -244,7 +244,7 @@ impl Index { let embedder_category_id = env.create_database(&mut wtxn, Some(VECTOR_EMBEDDER_CATEGORY_ID))?; let vector_store = env.create_database(&mut wtxn, Some(VECTOR_STORE))?; - let cellulite = cellulite::Cellulite::create_from_env(&env, &mut wtxn, "cellulite")?; + let cellulite = cellulite::Cellulite::create_from_env(&env, &mut wtxn, CELLULITE)?; let documents = env.create_database(&mut wtxn, Some(DOCUMENTS))?;