Skip to content

Commit

Permalink
feat(vault)!: do not create vault on every particle (#1553)
Browse files Browse the repository at this point in the history
feat!(vault): do not create vault on every particle, create only on service call
  • Loading branch information
folex committed Apr 6, 2023
1 parent 9dddabc commit aa0dd94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aquamarine/src/particle_data_store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ impl DataStore for ParticleDataStore {
fn initialize(&mut self) -> Result<()> {
create_dir(&self.particle_data_store).map_err(CreateDataStore)?;

self.vault.initialize()?;
// self.vault.initialize()?;

Ok(())
}
Expand Down

0 comments on commit aa0dd94

Please sign in to comment.