Skip to content

Commit b1a86b3

Browse files
committed
Fix warnings
1 parent 33eccbd commit b1a86b3

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

articles/azure-functions/durable/durable-functions-orchestration-versioning.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Orchestration Versioning in Durable Functions - Azure
33
description: Learn how to use the Orchestration Versioning feature in Durable Functions for zero-downtime deployments with breaking changes.
4-
author: azfuncdf
4+
author: AnatoliB
55
ms.topic: conceptual
66
ms.date: 07/03/2025
77
ms.author: azfuncdf
@@ -342,6 +342,10 @@ By default, all new orchestration instances are created with the current `defaul
342342

343343
You can override the default version by providing a specific version value when creating new orchestration instances using the orchestration client APIs. This allows fine-grained control over which version each new orchestration instance uses.
344344

345+
# [C# (In-process)](#tab/csharp)
346+
347+
This feature is not supported in the in-process model.
348+
345349
# [C# (Isolated)](#tab/csharp-isolated)
346350

347351
```csharp
@@ -428,6 +432,3 @@ Over time, you may want to remove legacy code paths from your orchestrator funct
428432
429433
> [!div class="nextstepaction"]
430434
> [Learn about general versioning strategies](durable-functions-versioning.md)
431-
432-
> [!div class="nextstepaction"]
433-
> [Configure host.json settings for Durable Functions](../../../includes/functions-host-json-durabletask.md)

articles/azure-functions/durable/durable-functions-versioning.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,15 +206,15 @@ Because of these potential failures, the "do nothing" strategy is not recommende
206206
> [!NOTE]
207207
> Orchestration Versioning is currently in public preview.
208208
209-
Orchestration Versioning is a built-in feature that enables [zero-downtime deployments](durable-functions-zero-downtime-deployments.md) with breaking changes. This approach allows different versions of orchestrations to coexist and execute concurrently without conflicts.
209+
Orchestration Versioning is a built-in feature that enables [zero-downtime deployments](durable-functions-zero-downtime-deployment.md) with breaking changes. This approach allows different versions of orchestrations to coexist and execute concurrently without conflicts.
210210

211211
With Orchestration Versioning:
212212
- Each orchestration instance gets a version permanently associated with it when created
213213
- Orchestrator functions can examine their version and branch execution accordingly
214214
- Workers running newer orchestrator function versions can continue executing orchestration instances created by older versions
215215
- The runtime prevents workers running older orchestrator function versions from executing orchestrations started by newer versions
216216

217-
This strategy is recommended for applications that need to support breaking changes while maintaining [zero-downtime deployments](durable-functions-zero-downtime-deployments.md). The feature is currently available for .NET in-process and .NET isolated programming models.
217+
This strategy is recommended for applications that need to support breaking changes while maintaining [zero-downtime deployments](durable-functions-zero-downtime-deployment.md). The feature is currently available for .NET in-process and .NET isolated programming models.
218218

219219
For detailed configuration and implementation guidance, see [Orchestration Versioning in Durable Functions](durable-functions-orchestration-versioning.md).
220220

0 commit comments

Comments
 (0)