Skip to content

Commit 7c9fd0a

Browse files
authored
Update performance-reliability.md
typo fix
1 parent d2eee6e commit 7c9fd0a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/azure-functions/performance-reliability.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ A function can become large because of many Node.js dependencies. Importing depe
2020

2121
Whenever possible, refactor large functions into smaller function sets that work together and return responses fast. For example, a webhook or HTTP trigger function might require an acknowledgment response within a certain time limit; it's common for webhooks to require an immediate response. You can pass the HTTP trigger payload into a queue to be processed by a queue trigger function. This approach lets you defer the actual work and return an immediate response.
2222

23-
## Background tasks must complete returning from functions
23+
## Background tasks must complete before returning from functions
2424

2525
Azure Functions does not track background threads. If your functions initiate any tasks, callbacks, threads, processes, tasks, etc., they must be complete before you return from your functions. If not, you risk site shutdown or other unintended behavior.
2626

0 commit comments

Comments
 (0)