We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 434e8bc commit 6accc3eCopy full SHA for 6accc3e
src/engine.rs
@@ -1653,10 +1653,16 @@ impl<T: PPGEvaluatorStrategy> PPGEvaluator<T> {
1653
fn all_upstreams_done(dag: &GraphType, jobs: &mut [NodeInfo], node_idx: NodeIndex) -> bool {
1654
//there's no point caching this - it never get's called again if it ever returned true
1655
let upstreams = dag.neighbors_directed(node_idx, Direction::Incoming);
1656
+ info!(
1657
+ "all_upstreams_done for node_idx:{}",
1658
+ node_idx
1659
+ );
1660
+
1661
for upstream_idx in upstreams {
1662
if !jobs[upstream_idx as usize].state.is_finished() {
1663
return false;
1664
}
1665
+ info!("upstream index {} is done", upstream_idx);
1666
1667
true
1668
0 commit comments