From fd626ec94da161dd33bdde43287d27d24afdacc0 Mon Sep 17 00:00:00 2001 From: weisd Date: Wed, 26 Jun 2024 18:16:10 +0800 Subject: [PATCH] init:store --- ecstore/src/disk.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ecstore/src/disk.rs b/ecstore/src/disk.rs index acf781fe..a3f8ea7a 100644 --- a/ecstore/src/disk.rs +++ b/ecstore/src/disk.rs @@ -22,7 +22,7 @@ pub const FORMAT_CONFIG_FILE: &str = "format.json"; pub struct DiskOption { pub cleanup: bool, - pub _health_check: bool, + pub health_check: bool, } pub async fn new_disk(ep: &Endpoint, opt: &DiskOption) -> Result {