Skip to content

Commit ab6e188

Browse files
cAsE InSeNsItIvE
1 parent a9a06f6 commit ab6e188

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/azure-functions/functions-bindings-warmup.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Not that the warmup trigger is only called during scale-up operations, not durin
3939
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.
4040

4141

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.
4343
* 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**
4444
* ```<PackageReference Include="Microsoft.Azure.WebJobs.Extensions" Version="3.0.5" />```
4545

@@ -74,7 +74,7 @@ namespace WarmupSample
7474

7575
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.
7676

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.
7878

7979
Here's the *function.json* file:
8080

@@ -105,7 +105,7 @@ public static void Run(ILogger log)
105105

106106
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.
107107

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.
109109

110110
Here's the *function.json* file:
111111

@@ -136,7 +136,7 @@ module.exports = async function (context, warmupContext) {
136136

137137
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.
138138

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.
140140

141141
Here's the *function.json* file:
142142

@@ -169,7 +169,7 @@ def main(warmupContext: func.Context) -> None:
169169

170170
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.
171171

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.
173173

174174
Here's the *function.json* file:
175175

0 commit comments

Comments
 (0)