diff --git a/client/src/app.rs b/client/src/app.rs index d54b15d..2aa7fb3 100644 --- a/client/src/app.rs +++ b/client/src/app.rs @@ -51,7 +51,7 @@ impl NavkaClientApp { if self.dev_mode { // dev mode: we do a 30-second kill info!("NAVKA_DEV_MODE: aggregator will time out in 30 seconds"); - match timeout(Duration::from_secs(30), aggregator_task).await { + match timeout(Duration::from_secs(30), input_task).await { Ok(_) => { info!("aggregator finished within 30s"); }