increase timeout to 2m

This commit is contained in:
Robin Appelman 2024-06-25 14:32:25 +02:00
commit 30323913a0

View file

@ -36,7 +36,7 @@ async fn main() -> Result<()> {
info!("found {} devices", devices.len());
for device in devices {
let result = timeout(
Duration::from_secs(15),
Duration::from_secs(120),
download(&client, &device, &config.output.target, &device_password),
)
.await;