Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
sfmskywalker committed Jan 19, 2024
2 parents c5e6213 + 4912726 commit 06f994a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public async Task SaveVariablesAsync(WorkflowExecutionContext workflowExecutionC

foreach (var context in contexts)
{
var variables = GetLocalVariables(context);
var variables = GetLocalVariables(context).ToList();
var storageDriverContext = new StorageDriverContext(context, cancellationToken);

foreach (var variable in variables)
Expand Down Expand Up @@ -89,7 +89,7 @@ public async Task SaveVariablesAsync(WorkflowExecutionContext workflowExecutionC
public async Task DeleteVariablesAsync(ActivityExecutionContext context)
{
var register = context.ExpressionExecutionContext.Memory;
var variableList = GetLocalVariables(context);
var variableList = GetLocalVariables(context).ToList();
var cancellationToken = context.CancellationToken;
var storageDriverContext = new StorageDriverContext(context, cancellationToken);

Expand Down

0 comments on commit 06f994a

Please sign in to comment.