fix(installer/tmobile): wait 200ms for telnet

This commit is contained in:
oopsbagel
2025-06-25 00:08:32 -07:00
committed by Cooper Quintin
parent 58618f3412
commit e32a6f5b2e

View File

@@ -28,6 +28,7 @@ pub async fn install(
async fn run_install(admin_ip: String, admin_password: String) -> Result<()> {
echo!("Starting telnet ... ");
start_telnet(&admin_ip, &admin_password).await?;
sleep(Duration::from_millis(200)).await;
println!("ok");
echo!("Connecting via telnet to {admin_ip} ... ");