From 42101478d2558276bc0c00fe1144b10ee01e938e Mon Sep 17 00:00:00 2001 From: donpat1to Date: Wed, 30 Jul 2025 01:07:08 +0200 Subject: [PATCH] added debugging --- WatcherAgent/src/main.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/WatcherAgent/src/main.rs b/WatcherAgent/src/main.rs index 96ef2c3..f2938c8 100644 --- a/WatcherAgent/src/main.rs +++ b/WatcherAgent/src/main.rs @@ -235,15 +235,15 @@ async fn register_with_server(base_url: &str) -> Result<(i32, String), Box { - println!("⚠️ Registration error: {} (will retry in 30 seconds)", err); + println!("⚠️ Registration error: {} (will retry in 10 seconds)", err); } } - sleep(Duration::from_secs(30)).await; + sleep(Duration::from_secs(10)).await; } }