fix bug in error message

This commit is contained in:
mpostma 2021-02-09 13:25:20 +01:00
parent 90b930ed7f
commit 4ca46b9e5f
No known key found for this signature in database
GPG Key ID: CBC8A7C1D7A28C3A

View File

@ -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)?;