release orchestration strengthening

This commit is contained in:
master
2026-01-17 21:32:03 +02:00
parent 195dff2457
commit da27b9faa9
256 changed files with 94634 additions and 2269 deletions

View File

@@ -154,6 +154,11 @@ public sealed class TimelineReplayOrchestrator : ITimelineReplayOrchestrator
try
{
if (_operations.TryGetValue(replayId, out var existing) && existing.Status == ReplayStatus.Cancelled)
{
return;
}
// Update status to in-progress
UpdateOperation(replayId, op => op with { Status = ReplayStatus.InProgress });