Azure / durabletask

Durable Task Framework allows users to write long running persistent workflows in C# using the async/await capabilities.
Apache License 2.0
1.47k stars 287 forks source link

Remove Wrong Core Entities Error Handling #1103

Closed nytian closed 1 month ago

nytian commented 1 month ago

Whenever core entities start, they will generate both OrchestratorStarted and OrchestratorCompleted events. The DetermineWork function checks all events of entities' runtime status. Therefore, the default error handling is not appropriate, as it should at least exclude these two events from being caught.

Fixes #1095