HTTP delete index route; Fix error on index not found

This commit is contained in:
Quentin de Quelen 2019-12-12 14:06:16 +01:00
parent 5ad73fe08b
commit 6edef07e29
1 changed files with 3 additions and 12 deletions

View File

@ -390,19 +390,10 @@ pub async fn get_all_updates_status(ctx: Context<Data>) -> SResult<Response> {
pub async fn delete_index(ctx: Context<Data>) -> SResult<StatusCode> {
ctx.is_allowed(IndexesWrite)?;
let _ = ctx.index()?;
let index_uid = ctx.url_param("index")?;
let found = ctx
.state()
.db
.delete_index(&index_uid)
.map_err(ResponseError::internal)?;
if found {
Ok(StatusCode::NO_CONTENT)
} else {
Ok(StatusCode::NOT_FOUND)
}
ctx.state().db.delete_index(&index_uid).map_err(ResponseError::internal)?;
Ok(StatusCode::NO_CONTENT)
}
pub fn index_update_callback(index_uid: &str, data: &Data, status: ProcessedUpdateResult) {