You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The ActivityExecutionContext has a property called Children. The intention is that when the ParentActivityExecutionContext property is set on an ActivityExecutionContext the current context is added to its parent's Children set. See:
That property is not, however, used to set the parent ActivityExecutionContext. Instead the _parentActivityExecutionContext is assigned to directly here
The result of this is that the ActivityExecutionContext.Children set is always empty, and functionality that depends on it does not work as expected. One example of this can be found in Flowchart.HasPendingWork.
The text was updated successfully, but these errors were encountered:
Description
The ActivityExecutionContext has a property called
Children
. The intention is that when theParentActivityExecutionContext
property is set on anActivityExecutionContext
the current context is added to its parent's Children set. See:elsa-core/src/modules/Elsa.Workflows.Core/Contexts/ActivityExecutionContext.cs
Line 101 in 2c394e2
That property is not, however, used to set the parent ActivityExecutionContext. Instead the
_parentActivityExecutionContext
is assigned to directly hereelsa-core/src/modules/Elsa.Workflows.Core/Contexts/ActivityExecutionContext.cs
Line 47 in 2c394e2
The result of this is that the ActivityExecutionContext.Children set is always empty, and functionality that depends on it does not work as expected. One example of this can be found in Flowchart.HasPendingWork.
The text was updated successfully, but these errors were encountered: