Loading tools/ci-cdk/canary-lambda/src/main.rs +2 −1 Original line number Diff line number Diff line Loading @@ -104,7 +104,8 @@ async fn lambda_main(clients: canary::Clients) -> Result<Value, Error> { let canaries = get_canaries_to_run(clients, env); let join_handles = canaries .into_iter() .map(|(name, future)| (name, tokio::spawn(future))); .map(|(name, future)| (name, tokio::spawn(future))) .collect::<Vec<_>>(); // Wait for and aggregate results let mut failures = BTreeMap::new(); Loading Loading
tools/ci-cdk/canary-lambda/src/main.rs +2 −1 Original line number Diff line number Diff line Loading @@ -104,7 +104,8 @@ async fn lambda_main(clients: canary::Clients) -> Result<Value, Error> { let canaries = get_canaries_to_run(clients, env); let join_handles = canaries .into_iter() .map(|(name, future)| (name, tokio::spawn(future))); .map(|(name, future)| (name, tokio::spawn(future))) .collect::<Vec<_>>(); // Wait for and aggregate results let mut failures = BTreeMap::new(); Loading