diff --git a/plugins/store/src/store.rs b/plugins/store/src/store.rs index 5ca2f8e9..17ad48cf 100644 --- a/plugins/store/src/store.rs +++ b/plugins/store/src/store.rs @@ -185,7 +185,8 @@ impl Store { let bytes = read(store_path)?; - self.cache = (self.deserialize)(&bytes).map_err(Error::Deserialize)?; + self.cache + .extend((self.deserialize)(&bytes).map_err(Error::Deserialize)?); Ok(()) }