mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-04 04:17:10 +02:00
fix the index_creation boolean
This commit is contained in:
parent
3ad8311bdd
commit
351ad32d77
1 changed files with 2 additions and 2 deletions
|
@ -143,7 +143,7 @@ pub async fn add_documents(
|
||||||
|
|
||||||
analytics.add_documents(
|
analytics.add_documents(
|
||||||
¶ms,
|
¶ms,
|
||||||
meilisearch.get_index(path.index_uid.clone()).await.is_ok(),
|
meilisearch.get_index(path.index_uid.clone()).await.is_err(),
|
||||||
&req,
|
&req,
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -174,7 +174,7 @@ pub async fn update_documents(
|
||||||
|
|
||||||
analytics.update_documents(
|
analytics.update_documents(
|
||||||
¶ms,
|
¶ms,
|
||||||
meilisearch.get_index(path.index_uid.clone()).await.is_ok(),
|
meilisearch.get_index(path.index_uid.clone()).await.is_err(),
|
||||||
&req,
|
&req,
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue