Skip to content

Commit 14cf17e

Browse files
authored
Update performance-reliability.md
revising sentence so we don't imply causal behavior
1 parent 7c9fd0a commit 14cf17e

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

2323
## Background tasks must complete before returning from functions
2424

25-
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.
25+
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

2727
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.
2828

0 commit comments

Comments
 (0)