fix(datasync): throw on cancellation in DevEtlRegistry.RunAllAsync

This commit is contained in:
Joseph Doherty
2026-01-03 16:32:29 -05:00
parent 6bd2b3c285
commit badc6a43f3
@@ -70,9 +70,7 @@ public class DevEtlRegistry
foreach (var tableName in GetAvailableTables())
{
if (cancellationToken.IsCancellationRequested)
break;
cancellationToken.ThrowIfCancellationRequested();
var result = await RunAsync(tableName, cancellationToken);
results.Add(result);
}