mirror of
https://github.com/meilisearch/meilisearch.git
synced 2024-11-26 20:15:07 +08:00
Remove the error catching on the index creation route when the index already exist
This commit is contained in:
parent
623a9012d5
commit
e51704c09a
@ -66,9 +66,6 @@ pub async fn create_index(mut ctx: Context<Data>) -> SResult<Response> {
|
||||
|
||||
let created_index = match db.create_index(&index_name) {
|
||||
Ok(index) => index,
|
||||
Err(meilidb_core::Error::IndexAlreadyExists) => db.open_index(&index_name).ok_or(
|
||||
ResponseError::internal("index not found but must have been found"),
|
||||
)?,
|
||||
Err(e) => return Err(ResponseError::create_index(e)),
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user