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

Add Error Handling for Core Entities when Received Unexpected Events #1104

Open nytian opened 1 month ago

nytian commented 1 month ago

Implement of error handling for core entities should be added. When the entities encounter unexpected events such as SubOrchestratorCompleted, they should raise an error to indicate the issue. Currently, they fail silently, resulting in a loss of state.

To implement this, we need to identify a list of unexpected events for core entities.