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
Fix dangling activity exception for multi-trigger flowcharts
Modified MaybeScheduleOutboundActivitiesAsync to handle activities that appear
dangling from one trigger's perspective but were legitimately scheduled by another
trigger. Now only throws exception if activity has no outbound connections.
Co-authored-by: sfmskywalker <938393+sfmskywalker@users.noreply.github.com>
thrownew($"Activity {activity.Id} is not reachable from the flowchart graph. Unable to schedule it's outbound activities.");
183
+
thrownew($"Activity {activity.Id} is not reachable from the flowchart graph and has no outbound connections. Unable to schedule it's outbound activities.");
178
184
}
179
185
180
186
// Register the activity as visited unless it was executed due to a backward connection
0 commit comments