Skip to content

Commit dcd325c

Browse files
authored
Merge pull request #40342 from petrs-x/patch-1
Update durable-functions-eternal-orchestrations.md
2 parents a71c6c2 + 28e682d commit dcd325c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/azure-functions/durable/durable-functions-eternal-orchestrations.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ public static async Task<HttpResponseMessage> OrchestrationTrigger(
8282
{
8383
string instanceId = "StaticId";
8484
// Null is used as the input, since there is no input in "Periodic_Cleanup_Loop".
85-
await client.StartNewAsync("Periodic_Cleanup_Loop"), instanceId, null);
85+
await client.StartNewAsync("Periodic_Cleanup_Loop", instanceId, null);
8686
return client.CreateCheckStatusResponse(request, instanceId);
8787
}
8888
```
@@ -96,4 +96,4 @@ If an orchestrator function is in an infinite loop and needs to be stopped, use
9696
## Next steps
9797

9898
> [!div class="nextstepaction"]
99-
> [Learn how to implement singleton orchestrations](durable-functions-singletons.md)
99+
> [Learn how to implement singleton orchestrations](durable-functions-singletons.md)

0 commit comments

Comments
 (0)