This commit is contained in:
Alex 2022-03-15 16:06:50 +01:00
parent 2d13f0aa13
commit 077dd1cde9
Signed by: lx
GPG Key ID: 0E496D15096376BE
2 changed files with 5 additions and 5 deletions

View File

@ -52,7 +52,8 @@ impl TableSchema for BlockRefTable {
type Filter = DeletedFilter;
fn updated(&self, old: Option<Self::E>, new: Option<Self::E>) {
let block = &old.as_ref().or_else(|| new.as_ref()).unwrap().block;
#[allow(clippy::or_fun_call)]
let block = &old.as_ref().or(new.as_ref()).unwrap().block;
let was_before = old.as_ref().map(|x| !x.deleted.get()).unwrap_or(false);
let is_after = new.as_ref().map(|x| !x.deleted.get()).unwrap_or(false);
if is_after && !was_before {

View File

@ -142,7 +142,8 @@ impl Garage {
let key_table = Table::new(KeyTable, control_rep_param, system.clone(), &db);
info!("Initialize Garage...");
let garage = Arc::new(Self {
Arc::new(Self {
config,
db,
background,
@ -154,9 +155,7 @@ impl Garage {
object_table,
version_table,
block_ref_table,
});
garage
})
}
pub fn bucket_helper(&self) -> helper::bucket::BucketHelper {