Skip to content

Commit ae5fb14

Browse files
authored
Merge pull request #109632 from PramodValavala-MSFT/patch-101
(AzureCXP) fix code sample
2 parents dc28f0a + 5e47fc1 commit ae5fb14

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
@@ -85,8 +85,8 @@ public static async Task<HttpResponseMessage> OrchestrationTrigger(
8585
[DurableClient] IDurableOrchestrationClient client)
8686
{
8787
string instanceId = "StaticId";
88-
// Null is used as the input, since there is no input in "Periodic_Cleanup_Loop".
89-
await client.StartNewAsync("Periodic_Cleanup_Loop", instanceId, null);
88+
89+
await client.StartNewAsync("Periodic_Cleanup_Loop", instanceId);
9090
return client.CreateCheckStatusResponse(request, instanceId);
9191
}
9292
```

0 commit comments

Comments
 (0)