mirror of
https://github.com/meilisearch/meilisearch.git
synced 2025-07-27 00:31:02 +00:00
Remove unused result response on indexes_uids function
This commit is contained in:
@ -251,9 +251,9 @@ impl Database {
|
||||
self.env.copy_to_path(path, CompactionOption::Enabled)
|
||||
}
|
||||
|
||||
pub fn indexes_uids(&self) -> MResult<Vec<String>> {
|
||||
pub fn indexes_uids(&self) -> Vec<String> {
|
||||
let indexes = self.indexes.read().unwrap();
|
||||
Ok(indexes.keys().cloned().collect())
|
||||
indexes.keys().cloned().collect()
|
||||
}
|
||||
|
||||
pub fn common_store(&self) -> heed::PolyDatabase {
|
||||
|
Reference in New Issue
Block a user