mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-23 05:14:27 +01:00
Remove the update from the database when popped out
This commit is contained in:
parent
851cc38216
commit
29229b2137
@ -73,6 +73,11 @@ impl Updates {
|
|||||||
match last_data {
|
match last_data {
|
||||||
Some(Value::Blob(bytes)) => {
|
Some(Value::Blob(bytes)) => {
|
||||||
let update = rmp_serde::from_read_ref(&bytes)?;
|
let update = rmp_serde::from_read_ref(&bytes)?;
|
||||||
|
|
||||||
|
// remove it from the database now
|
||||||
|
let last_id_bytes = last_id.to_be_bytes();
|
||||||
|
self.updates.delete(writer, last_id_bytes)?;
|
||||||
|
|
||||||
Ok(Some((last_id, update)))
|
Ok(Some((last_id, update)))
|
||||||
},
|
},
|
||||||
Some(value) => panic!("invalid type {:?}", value),
|
Some(value) => panic!("invalid type {:?}", value),
|
||||||
|
Loading…
Reference in New Issue
Block a user