Skip to content

Commit c97fbb5

Browse files
committed
reworded note about replay
1 parent d76f942 commit c97fbb5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/azure-functions/durable/durable-functions-isolated-create-first-csharp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ Azure Functions Core Tools lets you run an Azure Functions project locally. You'
137137
```
138138

139139
> [!NOTE]
140-
> If you set a breakpoint in the orchestrator function, you'll see Durable Functions' replay behavior when stepping through the code where after finishing one activity function call, the orchestrator function will not move to the next activity call. Instead, it'll restart from the beginning to rebuild the local state. This is because orchestrator functions use the event sourcing pattern to [reliably maintain execution state](./durable-functions-orchestrations.md#reliability).
140+
> You can observe the [replay behavior](./durable-functions-orchestrations.md#reliability) of Durable Functions through breakpoints. Because this is an important concept to understand, it's highly recommended that you read the linked article.
141141

142142
1. To stop debugging, press <kbd>Shift + F5</kbd> in Visual Studio Code.
143143

@@ -258,7 +258,7 @@ Azure Functions Core Tools lets you run an Azure Functions project on your local
258258
```
259259

260260
> [!NOTE]
261-
> If you set a breakpoint in the orchestrator function, you'll see Durable Functions' replay behavior when stepping through the code. This means after finishing one activity function call, the orchestrator function will not move to the next activity call, instead, it'll restart from the beginning to rebuild the local state. This is because orchestrator functions use the event sourcing pattern to [reliably maintain execution state](./durable-functions-orchestrations.md#reliability).
261+
> You can observe the [replay behavior](./durable-functions-orchestrations.md#reliability) of Durable Functions through breakpoints. Because this is an important concept to understand, it's highly recommended that you read the linked article.
262262

263263
5. To stop debugging, press <kbd>Shift + F5</kbd>.
264264

0 commit comments

Comments
 (0)