From 4762b4cfef5874cb05022406f94082f6a8a3300b Mon Sep 17 00:00:00 2001 From: Kuba <78603704+jakub-tldr@users.noreply.github.com> Date: Fri, 17 Apr 2026 11:22:33 +0200 Subject: [PATCH] typo --- src/setup.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/setup.rs b/src/setup.rs index 440b7a7c..99d17c11 100644 --- a/src/setup.rs +++ b/src/setup.rs @@ -119,7 +119,7 @@ impl GatewaySetupServer { _ = tokio::time::sleep(adoption_timeout) => { adoption_expired.store(true, Ordering::Relaxed); error!( - "Gateway adoption expired and is now blocked. Restart the Gateway to enable auto-adoption." + "Gateway adoption expired and is now blocked. Restart the Gateway to enable adoption." ); } _ = cancel_rx => {} @@ -205,7 +205,7 @@ impl gateway_setup_server::GatewaySetup for GatewaySetupServer { async fn start(&self, request: Request<()>) -> Result, Status> { debug!("Core initiated setup process, preparing to stream logs"); if self.adoption_expired.load(Ordering::Relaxed) { - let error_message = "Gateway adoption expired and is now blocked. Restart the Gateway to enable auto-adoption."; + let error_message = "Gateway adoption expired and is now blocked. Restart the Gateway to enable adoption."; error!("{error_message}"); return Err(Status::failed_precondition(error_message)); }