From 424b26eee8ce84df7442afc806848c1ba69a4c64 Mon Sep 17 00:00:00 2001 From: John Gallagher Date: Wed, 8 Oct 2025 11:10:20 -0400 Subject: [PATCH] Increase bootstore rack init timeout from 5m to 10m Closes #9167. --- sled-agent/src/bootstrap/bootstore_setup.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sled-agent/src/bootstrap/bootstore_setup.rs b/sled-agent/src/bootstrap/bootstore_setup.rs index c9e3cefbd8e..9833aaa067b 100644 --- a/sled-agent/src/bootstrap/bootstore_setup.rs +++ b/sled-agent/src/bootstrap/bootstore_setup.rs @@ -34,7 +34,7 @@ pub fn new_bootstore_config( addr: SocketAddrV6::new(global_zone_bootstrap_ip, BOOTSTORE_PORT, 0, 0), time_per_tick: Duration::from_millis(250), learn_timeout: Duration::from_secs(5), - rack_init_timeout: Duration::from_secs(300), + rack_init_timeout: Duration::from_secs(10 * 60), rack_secret_request_timeout: Duration::from_secs(5), fsm_state_ledger_paths: bootstore_fsm_state_paths( cluster_dataset_paths,