Skip to content

Commit c062b53

Browse files
authored
Merge pull request #101347 from DixitArora-MSFT/patch-35
Adding Return
2 parents 7fd3b88 + 89fdf85 commit c062b53

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/azure-functions/durable/durable-functions-dotnet-entities.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ public static Task Run([EntityTrigger] IDurableEntityContext ctx)
359359
{
360360
ctx.SetState(...);
361361
}
362-
ctx.DispatchAsync<Counter>();
362+
return ctx.DispatchAsync<Counter>();
363363
}
364364
```
365365

0 commit comments

Comments
 (0)