Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,9 @@ internal AzureStorageOrchestrationServiceSettings GetAzureStorageOrchestrationSe
UseSeparateQueueForEntityWorkItems = this.useSeparateQueueForEntityWorkItems,
EntityMessageReorderWindowInMinutes = this.options.EntityMessageReorderWindowInMinutes,
MaxEntityOperationBatchSize = this.options.MaxEntityOperationBatchSize,
#pragma warning disable CS0618 // Type or member is obsolete
AllowReplayingTerminalInstances = this.azureStorageOptions.AllowReplayingTerminalInstances,
#pragma warning restore CS0618 // Type or member is obsolete
PartitionTableOperationTimeout = this.azureStorageOptions.PartitionTableOperationTimeout,
QueueClientMessageEncoding = this.azureStorageOptions.QueueClientMessageEncoding,
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,7 @@ public TimeSpan MaxQueuePollingInterval
/// to a client event like a termination request or an external event, which gives the framework another opportunity to update the state of
/// the orchestrator in the "Instances table". To force a replay after enabling this configuration, just send any external event to the affected instanceId.
/// </remarks>
[Obsolete("Alternative recovery mechanisms to automatically synchronize instance and history table state have been implemented")]
public bool AllowReplayingTerminalInstances { get; set; } = false;

/// <summary>
Expand Down
Loading