Skip to content

Commit 6dcef7e

Browse files
author
Sophia Tevosyan
committed
fixing the compile error
1 parent 02ec8ea commit 6dcef7e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/DurableTask.Core/TaskEntityDispatcher.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ private async Task<SchedulerState> OnProcessWorkItemAsync(TaskOrchestrationWorkI
270270
if (workToDoNow.OperationCount > 0)
271271
{
272272
// execute the user-defined operations on this entity, via the middleware
273-
var result = await this.ExecuteViaMiddlewareAsync(workToDoNow, runtimeState.OrchestrationInstance, schedulerState.EntityState, workItem.IsExtendedSession, firstExecution);
273+
var result = await this.ExecuteViaMiddlewareAsync(workToDoNow, runtimeState.OrchestrationInstance, schedulerState.EntityState, workItem.IsExtendedSession, firstExecutionIfExtendedSession);
274274
var operationResults = result.Results!;
275275

276276
// if we encountered an error, record it as the result of the operations

0 commit comments

Comments
 (0)