Update dependencies, add some todos/notes for future changes

This commit is contained in:
2024-09-24 11:35:07 +09:30
parent bc5497ea16
commit 375e1f9638
5 changed files with 266 additions and 87 deletions

View File

@@ -174,7 +174,7 @@ impl Cli {
let reader = BufReader::new(file);
let graph = serde_json::from_reader(reader)?;
let graph = RunnableGraph::from_graph(graph);
// TODO: Possible to await here?
// TODO: Possible to await here? Actually needs awaiting to work
graph.run_default_tasks(threads, |id, status| {
info!("Node with id {} finished with status {:?}", id, status)
});