fix: address review comments

This commit is contained in:
Jacob Alber
2026-04-03 13:54:27 -04:00
Unverified
parent 32266a5267
commit 45166cdaa5
2 changed files with 4 additions and 3 deletions
@@ -185,6 +185,6 @@ public sealed class InProcessExecutionEnvironment : IWorkflowExecutionEnvironmen
Run run = new(runHandle);
await run.RunToNextHaltAsync(cancellationToken).ConfigureAwait(false);
return new(runHandle);
return run;
}
}
@@ -250,8 +250,9 @@ internal sealed class InProcessRunner : ISuperStepRunner, ICheckpointingHandle
this.StepTracer.TraceActivated(receiverId);
// TODO: traceContext?
var tracelessContext = this.RunContext.BindWorkflowContext(receiverId);
// TODO: #5084 - Add delivery-level activity (max one per step per executor) to capture non-message
// specific invocations of executor logic.
IWorkflowContext tracelessContext = this.RunContext.BindWorkflowContext(receiverId);
try
{