Skip to content

Commit cb355b8

Browse files
kshyjuggailey777
andauthored
Update articles/azure-functions/dotnet-isolated-process-guide.md
Co-authored-by: Glenn Gailey <[email protected]>
1 parent 2e618cb commit cb355b8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

articles/azure-functions/dotnet-isolated-process-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -603,7 +603,7 @@ The .NET isolated worker doesn't set a custom [`SynchronizationContext`](/dotnet
603603
Because there's no `SynchronizationContext` to suppress, using [`ConfigureAwait(false)`](/dotnet/api/system.threading.tasks.task.configureawait) in your function code has no practical effect. The isolated worker process runs as a standard .NET generic host (console app), so the same async/await behavior you'd expect in any ASP.NET Core or console application applies here. This is also true for .NET Framework (net48) isolated worker apps, since the worker process is always a console executable using `HostBuilder`.
604604

605605
> [!NOTE]
606-
> [Durable Functions](../durable/durable-functions-overview.md) orchestrators have their own threading constraints. The orchestrator replay thread must run continuations, so using `ConfigureAwait(false)` in orchestrator functions or orchestrator middleware can interfere with orchestration execution. For more information, see the [Durable Functions code constraints](../durable/durable-functions-code-constraints.md).
606+
> [Durable Functions](./durable/durable-functions-overview.md) orchestrators have their own threading constraints. The orchestrator replay thread must run continuations, so using `ConfigureAwait(false)` in orchestrator functions or orchestrator middleware can interfere with orchestration execution. For more information, see the [Durable Functions code constraints](./durable/durable-functions-code-constraints.md).
607607

608608
## Bindings
609609

0 commit comments

Comments
 (0)