A compost-lab Azure Functions app was created without a linked storage account, and triggers never coordinate correctly. Which required application setting must the developer supply for host internal state?
Select an answer to reveal the explanation.
Short Explanation
The Functions host keeps its choreography notes in storage—leases, triggers, internal state. AzureWebJobsStorage is that required mailbox. Without it, the compost-lab app cannot keep triggers in sync. This is host plumbing, not a Queue messaging design essay.
Full Explanation
Azure Functions requires a general-purpose storage account referenced by AzureWebJobsStorage for host operations such as trigger coordination. Omitting it breaks reliable host behavior. Language runtime settings and package deployment options do not replace that storage dependency. Treat this as function-app configuration, not Domain 5 messaging design.