Skip to content

Commit 53344e8

Browse files
authored
Merge pull request #108663 from TimShererWithAquent/us1679050q
Change SSL to TLS per 1679050
2 parents 22859ec + 7f23422 commit 53344e8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/azure-functions/durable/durable-functions-http-features.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ If any of these limitations might affect your use case, consider instead using a
253253

254254
Customizing the behavior of the orchestration's internal HTTP client is possible using [Azure Functions .NET dependency injection](https://docs.microsoft.com/azure/azure-functions/functions-dotnet-dependency-injection). This ability can be useful for making small behavioral changes. It can also be useful for unit testing the HTTP client by injecting mock objects.
255255

256-
The following example demonstrates using dependency injection to disable SSL certificate validation for orchestrator functions that call external HTTP endpoints.
256+
The following example demonstrates using dependency injection to disable TLS/SSL certificate validation for orchestrator functions that call external HTTP endpoints.
257257

258258
```csharp
259259
public class Startup : FunctionsStartup
@@ -271,7 +271,7 @@ public class MyDurableHttpMessageHandlerFactory : IDurableHttpMessageHandlerFact
271271
{
272272
public HttpMessageHandler CreateHttpMessageHandler()
273273
{
274-
// Disable SSL certificate validation (not recommended in production!)
274+
// Disable TLS/SSL certificate validation (not recommended in production!)
275275
return new HttpClientHandler
276276
{
277277
ServerCertificateCustomValidationCallback =

0 commit comments

Comments
 (0)