(self)
| 310 | self.staged_node_id = None |
| 311 | |
| 312 | def complete_node_execution(self): |
| 313 | node_id = self.staged_node_id |
| 314 | self.pop_node(node_id) |
| 315 | self.execution_cache.pop(node_id, None) |
| 316 | self.execution_cache_listeners.pop(node_id, None) |
| 317 | self.staged_node_id = None |
| 318 | |
| 319 | def get_nodes_in_cycle(self): |
| 320 | # We'll dissolve the graph in reverse topological order to leave only the nodes in the cycle. |