fanout debugging

This commit is contained in:
Christien Rioux
2023-08-18 00:06:21 -04:00
parent fcd9772e00
commit 2c779b2257
4 changed files with 89 additions and 40 deletions
+5 -1
View File
@@ -288,7 +288,11 @@ where
}
// Wait for them to complete
timeout(timeout_ms, async {
while let Some(_) = unord.next().await {}
while let Some(_) = unord.next().await {
if self.clone().evaluate_done() {
break;
}
}
})
.await
.into_timeout_or()