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.51k stars 290 forks source link

Revise how entity batches are executed and handle failures #954

Closed sebastianburckhardt closed 1 year ago

sebastianburckhardt commented 1 year ago

There are two changes here:

  1. Removes the unnecessary EntityExecutionOptions from TaskEntity
  2. Revises failure handling of entity batches. The entire entity batch can now return a failure result. Previously, only individual operations could return failure results.