Skip to content

Commit d634e47

Browse files
committed
Fix the Durable include links
1 parent 425aab3 commit d634e47

10 files changed

+13
-13
lines changed

articles/azure-functions/durable/durable-functions-isolated-create-first-csharp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ Azure Functions Core Tools gives you the capability to run an Azure Functions pr
113113

114114
1. Use one of these HTTP test tools to send an HTTP POST request to the URL endpoint:
115115

116-
[!INCLUDE [api-test-http-request-tools](../../../includes/api-test-http-request-tools.md)]
116+
[!INCLUDE [api-test-http-request-tools](../../../../includes/api-test-http-request-tools.md)]
117117

118118
The response is the HTTP function's initial result. It lets you know that the Durable Functions app orchestration started successfully. It doesn't yet display the end result of the orchestration. The response includes a few useful URLs.
119119

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ Azure Functions Core Tools gives you the capability to run an Azure Functions pr
263263

264264
5. Use your browser or one of these HTTP test tools to send an HTTP POST request to the URL endpoint:
265265

266-
[!INCLUDE [api-test-http-request-tools](../../includes/api-test-http-request-tools.md)]
266+
[!INCLUDE [api-test-http-request-tools](../../../includes/api-test-http-request-tools.md)]
267267

268268
Replace the last segment with the name of the orchestrator function (`HelloOrchestrator`). The URL should be similar to `http://localhost:7071/api/orchestrators/HelloOrchestrator`.
269269

@@ -275,7 +275,7 @@ Azure Functions Core Tools gives you the capability to run an Azure Functions pr
275275

276276
5. Use your browser or one of these HTTP test tools to send an HTTP POST request to the URL endpoint:
277277

278-
[!INCLUDE [api-test-http-request-tools](../../includes/api-test-http-request-tools.md)]
278+
[!INCLUDE [api-test-http-request-tools](../../../includes/api-test-http-request-tools.md)]
279279

280280
Replace the last segment with the name of the orchestrator function (`HelloOrchestrator`). The URL should be similar to `http://localhost:7071/api/orchestrators/HelloOrchestrator`.
281281

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ Azure Functions Core Tools gives you the capability to run an Azure Functions pr
157157

158158
1. Use your browser or one of these HTTP test tools to send an HTTP POST request to the URL endpoint:
159159

160-
[!INCLUDE [api-test-http-request-tools](../../includes/api-test-http-request-tools.md)]
160+
[!INCLUDE [api-test-http-request-tools](../../../includes/api-test-http-request-tools.md)]
161161

162162
Replace the last segment with the name of the orchestrator function (`HelloOrchestrator`). The URL should be similar to `http://localhost:7071/api/orchestrators/HelloOrchestrator`.
163163

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ Azure Functions Core Tools gives you the capability to run an Azure Functions pr
310310

311311
5. Use your browser or one of these HTTP test tools to send an HTTP POST request to the URL endpoint:
312312

313-
[!INCLUDE [api-test-http-request-tools](../../includes/api-test-http-request-tools.md)]
313+
[!INCLUDE [api-test-http-request-tools](../../../includes/api-test-http-request-tools.md)]
314314

315315
Replace the last segment with the name of the orchestrator function (`HelloOrchestrator`). The URL should be similar to `http://localhost:7071/api/orchestrators/HelloOrchestrator`.
316316

@@ -343,7 +343,7 @@ Azure Functions Core Tools gives you the capability to run an Azure Functions pr
343343

344344
5. Use your browser or one of these HTTP test tools to send an HTTP POST request to the URL endpoint:
345345

346-
[!INCLUDE [api-test-http-request-tools](../../includes/api-test-http-request-tools.md)]
346+
[!INCLUDE [api-test-http-request-tools](../../../includes/api-test-http-request-tools.md)]
347347

348348
Replace the last segment with the name of the orchestrator function (`HelloOrchestrator`). The URL should be similar to `http://localhost:7071/api/orchestrators/HelloOrchestrator`.
349349

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ Azure Functions Core Tools gives you the capability to run an Azure Functions pr
265265

266266
5. Use your browser or one of these HTTP test tools to send an HTTP POST request to the URL endpoint:
267267

268-
[!INCLUDE [api-test-http-request-tools](../../includes/api-test-http-request-tools.md)]
268+
[!INCLUDE [api-test-http-request-tools](../../../includes/api-test-http-request-tools.md)]
269269

270270
Replace the last segment with the name of the orchestrator function (`HelloOrchestrator`). The URL should be similar to `http://localhost:7071/api/orchestrators/HelloOrchestrator`.
271271

@@ -277,7 +277,7 @@ Azure Functions Core Tools gives you the capability to run an Azure Functions pr
277277

278278
5. Use your browser or one of these HTTP test tools to send an HTTP POST request to the URL endpoint:
279279

280-
[!INCLUDE [api-test-http-request-tools](../../includes/api-test-http-request-tools.md)]
280+
[!INCLUDE [api-test-http-request-tools](../../../includes/api-test-http-request-tools.md)]
281281

282282
Replace the last segment with the name of the orchestrator function (`HelloOrchestrator`). The URL should be similar to `http://localhost:7071/api/orchestrators/HelloOrchestrator`.
283283

articles/azure-functions/event-grid-how-tos.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ To test an Event Grid trigger locally, you have to get Event Grid HTTP requests
129129

130130
To send an HTTP post request, you need an HTTP test tool, like one of these:
131131

132-
[!INCLUDE [api-test-http-request-tools](../../includes/api-test-http-request-tools.md)]
132+
[!INCLUDE [api-test-http-request-tools](../../../includes/api-test-http-request-tools.md)]
133133

134134
When you're done testing, you can use the same subscription for production by updating the endpoint. Use the [`az eventgrid event-subscription update`](/cli/azure/eventgrid/event-subscription#az-eventgrid-event-subscription-update) Azure CLI command.
135135

articles/azure-functions/functions-create-serverless-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Next, test your function to see how it works with the new API surface:
6565

6666
1. You can also call the endpoint with another HTTP method to confirm that the function isn't executed. To do so, use one of these HTTP test tools:
6767

68-
[!INCLUDE [api-test-http-request-tools](../../includes/api-test-http-request-tools.md)]
68+
[!INCLUDE [api-test-http-request-tools](../../../includes/api-test-http-request-tools.md)]
6969

7070
## Proxies overview
7171

articles/azure-functions/functions-custom-handlers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -567,7 +567,7 @@ In Azure, [query Application Insights traces](analyze-telemetry-data.md#query-te
567567

568568
Custom handler apps are a web server process, so it may be helpful to start it on its own and test function invocations by sending mock [HTTP requests](#request-payload) using one of these tools:
569569

570-
[!INCLUDE [api-test-http-request-tools](../../includes/api-test-http-request-tools.md)]
570+
[!INCLUDE [api-test-http-request-tools](../../../includes/api-test-http-request-tools.md)]
571571

572572
You can also use this strategy in your CI/CD pipelines to run automated tests on your custom handler.
573573

articles/azure-functions/functions-manually-run-non-http.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The procedure described in this article is equivalent to using the **Test/Run**
1717

1818
The examples in this article use an HTTP test tool. You can obtain and use any of these tools that send HTTP requests:
1919

20-
[!INCLUDE [api-test-http-request-tools](../../includes/api-test-http-request-tools.md)]
20+
[!INCLUDE [api-test-http-request-tools](../../../includes/api-test-http-request-tools.md)]
2121

2222
## Define the request location
2323

articles/azure-functions/functions-run-local.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ The following considerations apply when calling HTTP endpoints locally:
276276

277277
+ You can make GET requests from a browser passing data in the query string. For all other HTTP methods, you must use an HTTP testing tool that supports POST requests, like one of these:
278278

279-
[!INCLUDE [api-test-http-request-tools](../../includes/api-test-http-request-tools.md)]
279+
[!INCLUDE [api-test-http-request-tools](../../../includes/api-test-http-request-tools.md)]
280280

281281
+ Make sure to use the same server name and port that the Functions host is listening on. You see an endpoint like this in the output generated when starting the Function host. You can call this URL using any HTTP method supported by the trigger.
282282

0 commit comments

Comments
 (0)