From afe9c95fea43b4dc950bc79d8d28f52beaee565a Mon Sep 17 00:00:00 2001 From: Sean Klein Date: Tue, 30 Nov 2021 15:53:55 -0500 Subject: [PATCH] Bump the unlock threshold back down to one --- sled-agent/src/bootstrap/agent.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sled-agent/src/bootstrap/agent.rs b/sled-agent/src/bootstrap/agent.rs index 7a2264aec08..a0aa63e0893 100644 --- a/sled-agent/src/bootstrap/agent.rs +++ b/sled-agent/src/bootstrap/agent.rs @@ -23,7 +23,7 @@ use std::path::Path; use tar::Archive; use thiserror::Error; -const UNLOCK_THRESHOLD: usize = 2; +const UNLOCK_THRESHOLD: usize = 1; const BOOTSTRAP_PORT: u16 = 12346; /// Describes errors which may occur while operating the bootstrap service.