Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/DurableTask.Core/TaskOrchestrationDispatcher.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1326,6 +1326,12 @@ void ProcessRewindOrchestrationDecision(
out List<TaskMessage> subOrchestrationRewindMessages,
out OrchestrationRuntimeState newRuntimeState)
{

/* WARNING!!!:
* If any changes are made to how this method modifies the orchestration's history, then corresponding changes *must*
* be made in the backend implementations that rely on this method for executing a rewind.
*/

HashSet<int> failedTaskIds = new();
subOrchestrationRewindMessages = new();

Expand Down
Loading