mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-04 20:37:15 +02:00
fix bug in error message
This commit is contained in:
parent
90b930ed7f
commit
4ca46b9e5f
1 changed files with 1 additions and 1 deletions
|
@ -257,7 +257,7 @@ impl IndexStore {
|
|||
let mut txn = self.env.write_txn()?;
|
||||
|
||||
if self.name_to_uuid.get(&txn, name.as_ref())?.is_some() {
|
||||
bail!("cannot create index {:?}: an index with this name already exists.")
|
||||
bail!("index {:?} already exists", name.as_ref())
|
||||
}
|
||||
|
||||
let result = self.create_index_txn(&mut txn, uuid, name, update_size, index_size)?;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue