Increase timeout for CLI startup

This commit is contained in:
Shantur Rathore
2025-12-03 16:37:48 +00:00
parent d7b5f53d59
commit b35bfe63c0
3 changed files with 9 additions and 2 deletions

View File

@@ -280,7 +280,7 @@ impl CliProcessManager {
let ready_clone = ready.clone();
let child_holder_clone = child_holder.clone();
thread::spawn(move || {
let timeout = Duration::from_secs(15);
let timeout = Duration::from_secs(60);
thread::sleep(timeout);
if ready_clone.load(Ordering::SeqCst) {
return;