Skip to content

Commit

Permalink
Nothing
Browse files Browse the repository at this point in the history
  • Loading branch information
fvilla committed Nov 23, 2024
1 parent 315bb35 commit 75efd25
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -378,6 +378,7 @@ This will commit or rollback at close()
scope.send(Message.MessageClass.ObservationLifecycle,
Message.MessageType.ResolutionStarted, result);
try {
// TODO send out the activity with the scope
dataflow = resolver.resolve(observation, scope);
if (dataflow != null) {
resolution.success(scope, result, dataflow,
Expand Down Expand Up @@ -500,7 +501,8 @@ private Graph<Actuator, DefaultEdge> computeActuatorOrder(Actuator rootActuator,
private void loadGraph(Actuator rootActuator, Graph<Actuator, DefaultEdge> dependencyGraph, Map<Long,
Actuator> cache, KnowledgeGraph.Operation contextualization) {

var childContextualization = contextualization.createChild(rootActuator, "Contextualization of " + rootActuator);
var childContextualization = contextualization.createChild(rootActuator,
"Contextualization of " + rootActuator);

cache.put(rootActuator.getId(), rootActuator);
dependencyGraph.addVertex(rootActuator);
Expand Down

0 comments on commit 75efd25

Please sign in to comment.