mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-26 14:54:27 +01:00
Fixed the display of enqueued updates
This commit is contained in:
parent
acb5e624c6
commit
8e4b362e4d
@ -243,7 +243,7 @@ impl Index {
|
|||||||
|
|
||||||
// retrieve all enqueued updates
|
// retrieve all enqueued updates
|
||||||
if let Some((last_id, _)) = self.updates.last_update_id(reader)? {
|
if let Some((last_id, _)) = self.updates.last_update_id(reader)? {
|
||||||
for id in last_update_result_id + 1..last_id {
|
for id in last_update_result_id + 1..=last_id {
|
||||||
if let Some(update) = self.update_status(reader, id)? {
|
if let Some(update) = self.update_status(reader, id)? {
|
||||||
updates.push(update);
|
updates.push(update);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user