From d91856d8242080634e255abbd2331fff4336c856 Mon Sep 17 00:00:00 2001 From: weisd Date: Wed, 25 Sep 2024 16:28:07 +0800 Subject: [PATCH] done read/write quorum, need test --- ecstore/src/sets.rs | 2 +- ecstore/src/store_init.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ecstore/src/sets.rs b/ecstore/src/sets.rs index 5ae8f62aa..72ca7ad47 100644 --- a/ecstore/src/sets.rs +++ b/ecstore/src/sets.rs @@ -23,7 +23,7 @@ use tokio::sync::RwLock; use tokio::sync::Semaphore; use tokio::time::Duration; use tokio_util::sync::CancellationToken; -use tracing::{debug, info, warn}; +use tracing::{info, warn}; use uuid::Uuid; #[derive(Debug, Clone)] diff --git a/ecstore/src/store_init.rs b/ecstore/src/store_init.rs index 965037466..941aa4adf 100644 --- a/ecstore/src/store_init.rs +++ b/ecstore/src/store_init.rs @@ -13,7 +13,7 @@ use std::{ fmt::Debug, }; -use tracing::{debug, info, warn}; +use tracing::{debug, warn}; use uuid::Uuid; pub async fn init_disks(eps: &Endpoints, opt: &DiskOption) -> (Vec>, Vec>) {