Merge pull request #285 from bidoubiwa/remove_catching_same_index_creation

Change the error catching on the index creation route
This commit is contained in:
Clément Renault 2019-11-13 15:13:51 +01:00 committed by GitHub
commit 0a8039d8d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)),
};