I was tired yesterday
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Alex 2021-02-24 11:05:59 +01:00
parent a52ab69640
commit 09fd6ea7f0
2 changed files with 10 additions and 3 deletions

View File

@ -433,7 +433,7 @@ where
let removed = self.store.transaction(|txn| {
if let Some(cur_v) = txn.get(k)? {
if cur_v == v {
txn.remove(v)?;
txn.remove(k)?;
return Ok(true);
}
}

View File

@ -319,7 +319,7 @@ where
}
counter += 1;
debug!("Offloading items from {:?}..{:?} ({})", begin, end, counter);
debug!("Offloading {} items from {:?}..{:?} ({})", items.len(), begin, end, counter);
self.offload_items(&items, &nodes[..]).await?;
} else {
break;
@ -348,8 +348,15 @@ where
}
// All remote nodes have written those items, now we can delete them locally
let mut not_removed = 0;
for (k, v) in items.iter() {
self.table.delete_if_equal(&k[..], &v[..])?;
if !self.table.delete_if_equal(&k[..], &v[..])? {
not_removed += 1;
}
}
if not_removed > 0 {
debug!("{} items not removed during offload because they changed in between (trying again...)", not_removed);
}
Ok(())