fix: ResumeAsync does not run pending steps

This commit is contained in:
Jacob Alber
2026-04-03 11:18:20 -04:00
Unverified
parent bd74ce7f8f
commit 32266a5267
@@ -185,6 +185,6 @@ public sealed class InProcessExecutionEnvironment : IWorkflowExecutionEnvironmen
Run run = new(runHandle);
await run.RunToNextHaltAsync(cancellationToken).ConfigureAwait(false);
return run;
return new(runHandle);
}
}