We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70d9c6a commit 8302129Copy full SHA for 8302129
1 file changed
cpp/src/cpp/types/node.cpp
@@ -578,7 +578,7 @@ namespace hgraph {
578
}
579
580
auto is_started{_node->is_started()};
581
- auto now_{is_scheduled_now() ? _node->graph()->evaluation_clock()->evaluation_time() : MIN_DT};
+ auto now_{is_started ? _node->graph()->evaluation_clock()->evaluation_time() : MIN_DT};
582
if (when > now_) {
583
_tags[tag.value_or("")] = when;
584
auto current_first = !_scheduled_events.empty() ? _scheduled_events.begin()->first : MAX_DT;
0 commit comments