From fee2eb85b09cc4721388d7fb9736868efaf025a3 Mon Sep 17 00:00:00 2001 From: Andrew Wygle Date: Fri, 21 Apr 2023 11:48:00 -0700 Subject: [PATCH] Add MC_SHARDING_STRATEGY --- fog/ledger/server/src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fog/ledger/server/src/config.rs b/fog/ledger/server/src/config.rs index 20c092abde..78ad2dc2ec 100644 --- a/fog/ledger/server/src/config.rs +++ b/fog/ledger/server/src/config.rs @@ -153,7 +153,7 @@ pub struct LedgerStoreConfig { /// Determines which group of Key Images the Key Image Store instance will /// process. - #[clap(long, default_value = "default")] + #[clap(long, default_value = "default", env = "MC_SHARDING_STRATEGY")] pub sharding_strategy: ShardingStrategy, }