mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-04 20:37:15 +02:00
Remove unused result response on indexes_uids function
This commit is contained in:
parent
e22debb994
commit
a0caf0d6d7
3 changed files with 3 additions and 5 deletions
|
@ -32,8 +32,7 @@ pub async fn list_indexes(ctx: Context<Data>) -> SResult<Response> {
|
|||
let indexes_uids = ctx
|
||||
.state()
|
||||
.db
|
||||
.indexes_uids()
|
||||
.map_err(ResponseError::internal)?;
|
||||
.indexes_uids();
|
||||
|
||||
let env = &ctx.state().db.env;
|
||||
let mut reader = env.read_txn().map_err(ResponseError::internal)?;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue