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
+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
@@ -22,7 +22,7 @@ The following considerations apply when using a warmup trigger:
22
22
* There can be only one warmup trigger function per function app, and it can't be invoked after the instance is already running.
23
23
* The warmup trigger is only called during scale-out operations, not during restarts or other nonscaling startups. Make sure your logic can load all required dependencies without relying on the warmup trigger. Lazy loading is a good pattern to achieve this goal.
24
24
* Dependencies created by warmup trigger should be shared with other functions in your app. To learn more, see [Static clients](manage-connections.md#static-clients).
25
-
* If the [built-in authentication](../app-service/overview-authentication-authorization.md) (aka Easy Auth) is used, [HTTPS Only](../app-service/configure-ssl-bindings.md#enforce-https) should be enabled for the warmup trigger to get invoked.
25
+
* If the [built-in authentication](../app-service/overview-authentication-authorization.md) (also known as Easy Auth) is used, [HTTPS Only](../app-service/configure-ssl-bindings.md#enforce-https) should be enabled for the warmup trigger to get invoked.
26
26
27
27
## Example
28
28
@@ -143,7 +143,7 @@ app.warmup('warmup', {
143
143
```
144
144
145
145
# [Model v3](#tab/nodejs-v3)
146
-
TypeScript samples are not documented for model v3.
146
+
TypeScript samples aren't documented for model v3.
147
147
148
148
::: zone-end
149
149
::: zone pivot="programming-language-powershell"
@@ -169,7 +169,7 @@ PowerShell example code pending.
169
169
170
170
The following example shows a warmup trigger in a *function.json* file and a [Python function](functions-reference-python.md) that runs on each new instance when it'is added to your app.
171
171
172
-
Your function must be named `warmup` (case-insensitive) and there may only be one warmup function per app.
172
+
Your function must be named `warmup` (case-insensitive) and there can only be one warmup function per app.
173
173
174
174
Here's the *function.json* file:
175
175
@@ -218,7 +218,7 @@ Use the `WarmupTrigger` attribute to define the function. This attribute has no
218
218
::: zone pivot="programming-language-java"
219
219
## Annotations
220
220
221
-
Warmup triggers do not require annotations. Just use a name of `warmup` (case-insensitive) for the `FunctionName` annotation.
221
+
Warmup triggers don't require annotations. Just use a name of `warmup` (case-insensitive) for the `FunctionName` annotation.
222
222
223
223
::: zone-end
224
224
::: zone pivot="programming-language-javascript,programming-language-typescript"
0 commit comments