Skip to content
This repository was archived by the owner on Oct 26, 2023. It is now read-only.

Commit 4441e44

Browse files
Update README.md
fixing formatting so code isn't scrambled on the azure-samples page
1 parent a9e8b9a commit 4441e44

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ public static async Task Run(DurableOrchestrationContext ctx)
6060
await ctx.CallActivityAsync("F3", sum);
6161
}
6262
```
63+
6364
In the example above, the fan-out work is distributed to multiple instances of function `F2`, and the work is tracked by using a dynamic list of tasks. The .Net `Task.WhenAll` API is called to wait for all of the called functions to finish. Then the `F2` function outputs are aggregated from the dynamic task list and finally passed on to the `F3` function.
6465

6566
The automatic checkpointing that happens at the await call on `Task.WhenAll` ensures that any crash or reboot midway through does not require a restart of any already completed tasks.
@@ -205,4 +206,4 @@ After deployment:
205206

206207
- Issue an HTTP POST to that endpoint with the `path` parameter populated from the output of the PowerShell script you ran in [2.1](#21-copy-the-dataset-to-an-azure-blob-storage-instance)
207208

208-
You'll receive back a list of URLs you can use to check status, issue new events (not handled by this sample), or terminate the orchestration.
209+
You'll receive back a list of URLs you can use to check status, issue new events (not handled by this sample), or terminate the orchestration.

0 commit comments

Comments
 (0)