Skip to content

Commit d7d688a

Browse files
AnatoliBlilyjma
andauthored
Apply suggestions from code review
Co-authored-by: lilyjma <[email protected]>
1 parent 394ef72 commit d7d688a

5 files changed

+5
-5
lines changed

articles/azure-functions/durable/durable-functions-instance-management.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -776,7 +776,7 @@ Resume-DurableOrchestration -InstanceId $InstanceId -Reason $ResumeReason
776776
```
777777

778778
> [!NOTE]
779-
> This feature is available in the standalone [Durable Functions PowerShell SDK](https://www.powershellgallery.com/packages/AzureFunctions.PowerShell.Durable.SDK) only. If you are not using it yet, see the [migration guide](durable-functions-powershell-v2-sdk-migration-guide.md) for usage instructions.
779+
> This feature is available in the standalone [Durable Functions PowerShell SDK](https://www.powershellgallery.com/packages/AzureFunctions.PowerShell.Durable.SDK) only. See the difference between the standalone SDK and the legacy built-in SDK along with [migration guide](durable-functions-powershell-v2-sdk-migration-guide.md).
780780
781781
# [Java](#tab/java)
782782

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Users of [Extension Bundles](../extension-bundles.md) (the recommended Azure Fun
5555
* PowerShell: The [AzureFunctions.PowerShell.Durable.SDK](https://www.powershellgallery.com/packages/AzureFunctions.PowerShell.Durable.SDK) module.
5656

5757
> [!NOTE]
58-
> For PowerShell users: the standalone [AzureFunctions.PowerShell.Durable.SDK](https://www.powershellgallery.com/packages/AzureFunctions.PowerShell.Durable.SDK) module is now generally available (GA) and is the recommended approach. See the [migration guide](./durable-functions-powershell-v2-sdk-migration-guide.md) for details. The legacy SDK is also built into the Azure Functions PowerShell language worker for backward compatibility. However, the legacy SDK may not receive new features or bug fixes, and it may be eventually removed from the worker.
58+
> For PowerShell users: the standalone [AzureFunctions.PowerShell.Durable.SDK](https://www.powershellgallery.com/packages/AzureFunctions.PowerShell.Durable.SDK) module is now generally available (GA) and is recommended over the legacy SDK that's built into the Azure Functions PowerShell language worker. Going forward, the legacy SDK may not receive new features or bug fixes, and may eventually be removed from the worker. See [migration guide](./durable-functions-powershell-v2-sdk-migration-guide.md) for details on migrating to the standalone SDK.
5959
6060
## GitHub repositories
6161

articles/azure-functions/durable/durable-functions-powershell-v2-sdk-migration-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,6 @@ In this section, we describe the interface and behavioral changes you can expect
195195
* Exceptions thrown by activities scheduled with `Wait-DurableTask` (as in the Fan-Out/Fan-In pattern) are no longer silently ignored. Instead, on an exception, the cmdlet propagates that exception to the orchestrator so that it may be handled by user-code.
196196
* Null values are no longer dropped from the result list of a `Wait-DurableTask` (i.e., WhenAll) invocation. This means that a successful invocation of `Wait-DurableTask` without the `-Any` flag should return an array of the same size as the number of tasks it scheduled.
197197

198-
### Where to get support, provide feedback, and suggest changes
198+
### Get support and provide feedbsck
199199

200200
Please report any feedback and suggestions to the SDK's [_GitHub repo_](https://github.com/Azure/azure-functions-durable-powershell).

articles/azure-functions/durable/durable-functions-sub-orchestrations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ An orchestrator function can call another orchestrator function using the *"call
1616
Sub-orchestrator functions behave just like activity functions from the caller's perspective. They can return a value and throw an exception as the parent orchestrator function anticipates them.
1717

1818
> [!NOTE]
19-
> In PowerShell, sub-orchestrations are supported in the [standalone Durable Functions PowerShell SDK](durable-functions-powershell-v2-sdk-migration-guide.md) only.
19+
> In PowerShell, sub-orchestrations are supported in the standalone SDK only: [`AzureFunctions.PowerShell.Durable.SDK`](https://www.powershellgallery.com/packages/AzureFunctions.PowerShell.Durable.SDK). See the difference between the standalone SDK and the legacy built-in SDK along with [migration guide](durable-functions-powershell-v2-sdk-migration-guide.md).
2020
2121
[!INCLUDE [functions-nodejs-durable-model-description](../../../includes/functions-nodejs-durable-model-description.md)]
2222

articles/azure-functions/durable/quickstart-powershell-vscode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ You added an HTTP-triggered function that starts an orchestration. Open *HttpSta
149149
You now have a Durable Functions app that you can run locally and deploy to Azure.
150150

151151
> [!TIP]
152-
> This quickstart uses the standalone Durable Functions PowerShell SDK, which is now generally available and provides the best performance and latest features. For more information about the SDK and migration from the built-in version, see the [standalone PowerShell SDK guide](./durable-functions-powershell-v2-sdk-migration-guide.md).
152+
> This quickstart uses the standalone Durable Functions PowerShell SDK, which is now generally available and provides the best performance and latest features. For more information about the SDK and migration from the legacy built-in version, see the [standalone PowerShell SDK guide](./durable-functions-powershell-v2-sdk-migration-guide.md).
153153
154154
## Test the function locally
155155

0 commit comments

Comments
 (0)