Skip to content

Commit 7ddc9db

Browse files
committed
Fixes build issues
1 parent 85ae112 commit 7ddc9db

6 files changed

+13
-11
lines changed

Diff for: articles/azure-functions/create-first-function-cli-python.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ In the previous example, replace `<FUNCTION_APP_NAME>` and `<RESOURCE_GROUP_NAME
304304

305305
## Verify in Azure
306306

307-
Run the following command to view near real-time [streaming logs](functions-run-local.md#enable-streaming-logs) in Application Insights in the Azure portal.
307+
Run the following command to view near real-time streaming logs in Application Insights in the Azure portal.
308308

309309
```console
310310
func azure functionapp logstream <APP_NAME> --browser

Diff for: articles/azure-functions/functions-app-settings.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -507,7 +507,7 @@ Controls the timeout, in seconds, when connected to streaming logs. The default
507507
|-|-|
508508
|SCM_LOGSTREAM_TIMEOUT|`1800`|
509509

510-
The above sample value of `1800` sets a timeout of 30 minutes. To learn more, see [Enable streaming logs](functions-run-local.md#enable-streaming-logs).
510+
The above sample value of `1800` sets a timeout of 30 minutes. For more information, see [Enable streaming execution logs in Azure Functions](streaming-logs.md).
511511

512512
## WEBSITE\_CONTENTAZUREFILECONNECTIONSTRING
513513

Diff for: articles/azure-functions/functions-core-tools-reference.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ The `deploy` action supports the following options:
206206
| ------------ | -------------------------------------- |
207207
| **`--browser`** | Open Azure Application Insights Live Stream for the function app in the default browser. |
208208

209-
To learn more, see [Enable streaming logs](functions-run-local.md#enable-streaming-logs).
209+
For more information, see [Enable streaming execution logs in Azure Functions](streaming-logs.md).
210210

211211
## func azure functionapp publish
212212

Diff for: articles/azure-functions/functions-run-local.md

+8-6
Original file line numberDiff line numberDiff line change
@@ -246,18 +246,18 @@ Keep in mind the following considerations when running your functions locally:
246246

247247
+ While there's local storage emulation available, it's often best to validate your triggers and bindings against live services in Azure. You can maintain the connections to these services in the local.settings.json project file. For more information, see [Local settings file](functions-develop-local.md#local-settings-file). Make sure to keep test and production data separate when testing against live Azure services.
248248

249-
+ You can trigger non-HTTP functions locally without connecting to a live service. For more information, see [Non-HTTP triggered functions](#non-http-triggered-functions).
249+
+ You can trigger non-HTTP functions locally without connecting to a live service. For more information, see [Pass data to local functions](./functions-run-local?tabs=non-http-trigger#pass-data-to-local-functions).
250250

251251
+ When you include your Application Insights connection information in the local.settings.json file, local log data is written to the specific Application Insights instance. To keep local telemetry data separate from production data, consider using a separate Application Insights instance for development and testing.
252252

253253
## Pass data to local functions
254254

255-
To test your functions locally, you [start the Functions host](#start) and call endpoints on the local server using HTTP requests. The endpoint you call depends on the type of function.
255+
To test your functions locally, you [start the Functions host](#start) and call endpoints on the local server using HTTP requests. The endpoint you call depends on your type of function trigger.
256256

257-
>[!NOTE]
257+
> [!NOTE]
258258
> Examples in this topic use the cURL tool to send HTTP requests from the terminal or a command prompt. You can use a tool of your choice to send HTTP requests to the local server. The cURL tool is available by default on Linux-based systems and Windows 10 build 17063 and later. On older Windows, you must first download and install the [cURL tool](https://curl.haxx.se/).
259259
260-
### [HTTP triggers](#tab/http-trigger)
260+
### [HTTP trigger](#tab/http-trigger)
261261

262262
You call this endpoint to start an HTTP triggered function:
263263

@@ -327,10 +327,12 @@ The following considerations apply when using the administrator endpoint for loc
327327

328328
+ Access keys are valuable shared secrets. When used locally, they must be securely stored outside of source control. Because authentication and authorization aren't required by Functions when running locally, you should avoid using and storing access keys unless your scenarios require it.
329329

330-
+ Event Grid triggers have other requirements for local testing. For more information, see [Local testing with viewer web app](event-grid-how-tos.md#local-testing-with-viewer-web-app).
331-
332330
+ Calling an administrator endpoint and passing test data is similar to using the **Test** tab in the Azure portal.
333331

332+
### [Event Grid trigger](#tab/non-http-trigger)
333+
334+
Event Grid triggers have spcific requirements to enable local testing. For more information, see [Local testing with viewer web app](event-grid-how-tos.md#local-testing-with-viewer-web-app).
335+
334336
---
335337

336338
## <a name="publish"></a>Publish to Azure

Diff for: articles/azure-functions/functions-triggers-bindings.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Learn to use triggers and bindings to connect your Azure Function t
44
ms.topic: conceptual
55
ms.date: 08/14/2023
66
ms.custom: devdivchpfy22, ignite-2022
7-
zone_pivot_groups: programming-languages-set-functions-lang-workers
7+
zone_pivot_groups: programming-languages-set-functions
88
---
99

1010
# Azure Functions triggers and bindings concepts

Diff for: includes/functions-streaming-logs-cli-qs.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.date: 10/18/2020
66
ms.author: glenga
77
---
88

9-
Run the following command to view near real-time [streaming logs](../articles/azure-functions/functions-run-local.md#enable-streaming-logs):
9+
Run the following command to view near real-time streaming logs:
1010

1111
```console
1212
func azure functionapp logstream <APP_NAME>

0 commit comments

Comments
 (0)