diff --git a/ecstore/src/store_init.rs b/ecstore/src/store_init.rs index 1a09e6ee4..6f28c0ddf 100644 --- a/ecstore/src/store_init.rs +++ b/ecstore/src/store_init.rs @@ -50,10 +50,14 @@ pub async fn do_init_format_file( set_drive_count: usize, deployment_id: Option, ) -> Result { + warn!("do_init_format_file id: {:?}, first_disk: {}", deployment_id, first_disk); + let (formats, errs) = read_format_file_all(disks, false).await; DiskError::check_disk_fatal_errs(&errs)?; + warn!("read_format_file_all errs {:?}", &errs); + check_format_erasure_values(&formats, set_drive_count)?; if first_disk && DiskError::should_init_erasure_disks(&errs) {