You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-functions/functions-bindings-azure-mysql-output.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -656,7 +656,7 @@ In the [Java functions runtime library](/java/api/overview/azure/functions/runti
656
656
| Element |Description|
657
657
|---------|---------|
658
658
|`commandText`| Required. The name of the table that the binding writes to. |
659
-
|`connectionStringSetting`| Required. The name of an app setting that contains the connection string for the database to which data is written. This isn't the actual connection string and must instead resolve to an environment variable.|
659
+
|`connectionStringSetting`| Required. The name of an app setting that contains the connection string for the database to which data is written. This value isn't the actual connection string and must instead resolve to an environment variable.|
660
660
|`name`| Required. The unique name of the function binding. |
661
661
662
662
::: zone-end
@@ -672,7 +672,7 @@ The following table explains the properties that you can set on the `options` ob
672
672
| Property | Description |
673
673
|---------|----------------------|
674
674
|`commandText`| Required. The name of the table that the binding writes to. |
675
-
|`connectionStringSetting`| Required. The name of an app setting that contains the connection string for the database to which data is written. This isn't the actual connection string and must instead resolve to an environment variable. |
675
+
|`connectionStringSetting`| Required. The name of an app setting that contains the connection string for the database to which data is written. This value isn't the actual connection string and must instead resolve to an environment variable. |
676
676
677
677
# [Model v3](#tab/nodejs-v3)
678
678
@@ -684,7 +684,7 @@ The following table explains the binding configuration properties that you set i
684
684
|`direction`| Required. Must be set to `out`. |
685
685
|`name`| Required. The name of the variable that represents the entity in function code. |
686
686
|`commandText`| Required. The name of the table that the binding writes to. |
687
-
|`connectionStringSetting`| Required. The name of an app setting that contains the connection string for the database to which data is written. This isn't the actual connection string and must instead resolve to an environment variable. |
687
+
|`connectionStringSetting`| Required. The name of an app setting that contains the connection string for the database to which data is written. This value isn't the actual connection string and must instead resolve to an environment variable. |
688
688
689
689
---
690
690
@@ -702,7 +702,7 @@ The following table explains the binding configuration properties that you set i
702
702
|`direction`| Required. Must be set to `out`. |
703
703
|`name`| Required. The name of the variable that represents the entity in function code. |
704
704
|`commandText`| Required. The name of the table that the binding writes to. |
705
-
|`connectionStringSetting`| Required. The name of an app setting that contains the connection string for the database to which data is written. This isn't the actual connection string and must instead resolve to an environment variable. |
705
+
|`connectionStringSetting`| Required. The name of an app setting that contains the connection string for the database to which data is written. This value isn't the actual connection string and must instead resolve to an environment variable. |
Copy file name to clipboardExpand all lines: articles/azure-functions/functions-bindings-azure-mysql-trigger.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -731,7 +731,7 @@ If an exception occurs during startup, the host runtime automatically attempts t
731
731
732
732
If an exception occurs in the user function during change processing, the batch of rows currently being processed is retried again in 60 seconds. Other changes are processed as normal during this time, but the rows in the batch that caused the exception are ignored until the time-out period elapses.
733
733
734
-
If the function execution fails five consecutive times for a particular row, that row is completely ignored for all future changes. Because the rows in a batch aren't deterministic, rows in a failed batch might end up in different batches in subsequent invocations. This behavior means that not all rows in the failed batch are necessarily ignored. If other rows in the batch caused the exception, the "good" rows might end up in a different batch that doesn't fail in future invocations.
734
+
If the function execution fails five consecutive times for a particular row, that row is ignored for all future changes. Because the rows in a batch aren't deterministic, rows in a failed batch might end up in different batches in subsequent invocations. This behavior means that not all rows in the failed batch are necessarily ignored. If other rows in the batch caused the exception, the "good" rows might end up in a different batch that doesn't fail in future invocations.
Copy file name to clipboardExpand all lines: includes/functions-bindings-csharp-intro-with-csx.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ ms.date: 11/16/2021
6
6
ms.author: glenga
7
7
---
8
8
9
-
You an create a C# function by using one of the following C# modes:
9
+
You can create a C# function by using one of the following C# modes:
10
10
11
11
*[Isolated worker model](../articles/azure-functions/dotnet-isolated-process-guide.md): Compiled C# function that runs in a worker process that's isolated from the runtime. An isolated worker process is required to support C# functions running on long-term support (LTS) and non-LTS versions for .NET and the .NET Framework.
12
12
*[In-process model](../articles/azure-functions/functions-dotnet-class-library.md): Compiled C# function that runs in the same process as the Azure Functions runtime.
0 commit comments