Skip to content

Commit 086af73

Browse files
committed
More Pesala fixes
1 parent d690404 commit 086af73

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

articles/azure-functions/durable/durable-functions-dotnet-isolated-overview.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -86,16 +86,20 @@ public class MyOrchestration : TaskOrchestrator<string, string>
8686
```
8787

8888
## Durable entities
89-
Durable entities are supported in the .NET isolated worker. See [developer's guide](./durable-functions-dotnet-entities.md).
89+
90+
Durable entities are supported in the .NET isolated worker. For more information, see the [developer's guide](./durable-functions-dotnet-entities.md).
9091

9192
## Migration guide
9293

93-
#### [Migrate to .NET 8.0](https://learn.microsoft.com/en-us/azure/azure-functions/migrate-dotnet-to-isolated-model?tabs=net8#choose-your-target-net-version)
94-
This guide assumes you're starting with a .NET Durable Functions 2.x project.
94+
This process assumes you're starting with a .NET Durable Functions 2.x project running in-process with the Functions host. When
95+
96+
### Migrate your project
97+
98+
The first step is to [migrate your .NET project to the isolated worker process](../migrate-dotnet-to-isolated-model.md).
9599

96-
### Update your project
100+
### Update package reference
97101

98-
The first step is to update your project to [Azure Functions .NET isolated](../migrate-dotnet-to-isolated-model.md). Then, update your Durable Functions NuGet package references.
102+
After you've migrated your app to use the isolate worker process, you must update your Durable Functions NuGet package to reference the isolated worker-specific package, like in this example:
99103

100104
Old:
101105

articles/azure-functions/functions-bindings-http-webhook-trigger.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1108,12 +1108,12 @@ Most HTTP trigger templates require an access key in the request. So your HTTP r
11081108
https://<APP_NAME>.azurewebsites.net/api/<FUNCTION_NAME>?code=<API_KEY>
11091109
```
11101110

1111+
Function apps that run in containers use the domain of the container host. For an example HTTP endpoint hosted in Azure Container Apps, see the example in [this Container Apps hosting article](functions-deploy-container-apps.md#verify-your-functions-on-azure).
1112+
11111113
The key can be included in a query string variable named `code`, as mentioned earlier. It can also be included in an `x-functions-key` HTTP header. The value of the key can be any function key defined for the function, or any host key.
11121114

11131115
You can allow anonymous requests, which don't require keys. You can also require that the master key is used. You change the default authorization level by using the `authLevel` property in the binding JSON.
11141116

1115-
#### [Azure function app with Azure container apps](https://learn.microsoft.com/en-us/azure/azure-functions/functions-deploy-container-apps?tabs=acr%2Cbash&pivots=programming-language-powershell#verify-your-functions-on-azure)
1116-
11171117
> [!NOTE]
11181118
> When running functions locally, authorization is disabled regardless of the specified authorization level setting. After publishing to Azure, the `authLevel` setting in your trigger is enforced. Keys are still required when running [locally in a container](functions-create-container-registry.md#build-the-container-image-and-verify-locally).
11191119

0 commit comments

Comments
 (0)