From 86e0c47e8021da6ff599808090c5c2e389e3606d Mon Sep 17 00:00:00 2001 From: Romashka Date: Tue, 24 Dec 2024 12:23:16 +0200 Subject: [PATCH] typo-Update join.rs Signed-off-by: Romashka --- crates/bin/pd/src/network/join.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bin/pd/src/network/join.rs b/crates/bin/pd/src/network/join.rs index dce474a2a8..4453320345 100644 --- a/crates/bin/pd/src/network/join.rs +++ b/crates/bin/pd/src/network/join.rs @@ -303,7 +303,7 @@ pub async fn unpack_state_archive( // If the archive we consumed was generated via `pd migrate`, then it will contain // a new genesis file and priv_validator_state.json, both of which should be applied - // over the generted cometbft config files. If the archive was generated via `pd export`, + // over the generated cometbft config files. If the archive was generated via `pd export`, // then those extra files will be missing, and only rocksdb data will be present. let new_genesis = pd_home.join("genesis.json"); let new_val_state = pd_home.join("priv_validator_state.json");