Do not insert safe defaults during import/export

This commit is contained in:
Maurus Decimus
2026-05-08 08:16:53 +02:00
parent af583c19c1
commit d950bf5f56

View File

@@ -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;