Fix compilation without enterprise feature

This commit is contained in:
mdecimus
2024-09-20 12:13:48 +02:00
parent ea24106045
commit 8af15d1b10
13 changed files with 110 additions and 6 deletions

View File

@@ -5,7 +5,7 @@
*/
use ahash::AHashSet;
use common::Core;
use common::{manager::backup::BackupParams, Core};
use jmap_proto::types::{collection::Collection, property::Property};
use store::{
rand,
@@ -234,7 +234,7 @@ pub async fn test(db: Store) {
// Export store
println!("Exporting store...");
let temp_dir = TempDir::new("art_vandelay_tests", true);
core.backup(temp_dir.path.clone()).await;
core.backup(BackupParams::new(temp_dir.path.clone())).await;
// Destroy store
println!("Destroying store...");