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-warmup.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,7 @@ Not that the warmup trigger is only called during scale-up operations, not durin
39
39
The following example shows a [C# function](functions-dotnet-class-library.md) that will run on each new instance when it is added to your app. A return value attribute isn't required.
40
40
41
41
42
-
* Your function must be named ```warmup``` and there may only be one warmup function per app.
42
+
* Your function must be named ```warmup```(case-insensitive) and there may only be one warmup function per app.
43
43
* To use warmup as a .NET class library function, please make sure you have a package reference to **Microsoft.Azure.WebJobs.Extensions >= 3.0.5**
The following example shows a warmup trigger in a *function.json* file and a [C# script function](functions-reference-csharp.md) that will run on each new instance when it is added to your app.
76
76
77
-
Your function must be named ```warmup```, and there may only be one warmup function per app.
77
+
Your function must be named ```warmup``` (case-insensitive), and there may only be one warmup function per app.
78
78
79
79
Here's the *function.json* file:
80
80
@@ -105,7 +105,7 @@ public static void Run(ILogger log)
105
105
106
106
The following example shows a warmup trigger in a *function.json* file and a [JavaScript function](functions-reference-node.md) that will run on each new instance when it is added to your app.
107
107
108
-
Your function must be named ```warmup``` and there may only be one warmup function per app.
108
+
Your function must be named ```warmup```(case-insensitive) and there may only be one warmup function per app.
The following example shows a warmup trigger in a *function.json* file and a [Python function](functions-reference-python.md) that will run on each new instance when it is added to your app.
138
138
139
-
Your function must be named ```warmup``` and there may only be one warmup function per app.
139
+
Your function must be named ```warmup```(case-insensitive) and there may only be one warmup function per app.
The following example shows a warmup trigger in a *function.json* file and a [Java functions](functions-reference-java.md) that will run on each new instance when it is added to your app.
171
171
172
-
Your function must be named ```warmup``` and there may only be one warmup function per app.
172
+
Your function must be named ```warmup```(case-insensitive) and there may only be one warmup function per app.
0 commit comments