diff --git a/crates/common/src/manager/boot.rs b/crates/common/src/manager/boot.rs index fc2bc88f..f0ba25a0 100644 --- a/crates/common/src/manager/boot.rs +++ b/crates/common/src/manager/boot.rs @@ -128,7 +128,9 @@ impl BootManager { let mut bootstrap = Bootstrap::new(registry).await; // Add safe defaults if missing - bootstrap.insert_safe_defaults().await; + if import_export == StoreOp::None { + bootstrap.insert_safe_defaults().await; + } // Start listeners let mut servers = Listeners::parse(&mut bootstrap).await;