Skip to content

Commit 3e1be46

Browse files
authored
Update performance-reliability.md
1 parent 14cf17e commit 3e1be46

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
@@ -24,7 +24,7 @@ Whenever possible, refactor large functions into smaller function sets that work
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

27-
For example, if a function kicks off a background task and returns a successful response before the task finishes, the function will be considered successful and complete despite the result of the background task.
27+
For example, if a function kicks off a background task and returns a successful response before the task finishes, the function will be considered successful and complete despite the result of the background task. If this background task is performing essential work, it may be pre-empted by site shutdown, leaving that work in an unknown state.
2828

2929
## Cross function communication
3030

0 commit comments

Comments
 (0)