Skip to content

Commit adb00dc

Browse files
satvuggailey777
andauthored
Update articles/azure-functions/performance-reliability.md
Co-authored-by: Glenn Gailey <[email protected]>
1 parent 3e1be46 commit adb00dc

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 before returning from functions
23+
## Make sure background tasks complete
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. Site shutdown may still occur regardless of background thread status, leading to unintended behavior.
2626

0 commit comments

Comments
 (0)