AZ-204 · Question #386
Case Study 3 - City Power & Light Background City Power & Light company provides electrical infrastructure monitoring solutions for homes and businesses. The company is migrating solutions to Azure. C
The correct answer is C. Update the function to be stateful by using Durable Functions to process the request payload.. Async operation tracking The HTTP response mentioned previously is designed to help implement long-running HTTP async APIs with Durable Functions. This pattern is sometimes referred to as the polling consumer Both the client and server implementations of this pattern are built in
Question
Exhibits
Options
- AUpdate line RA13 to use the async keyword and return an HttpRequest object value.
- BConfigure the Function app to use an App Service hosting plan. Enable the Always On setting of
- CUpdate the function to be stateful by using Durable Functions to process the request payload.
- DUpdate the functionTimeout property of the host.json project file to 15 minutes.
How the community answered
(41 responses)- A7% (3)
- B17% (7)
- C71% (29)
- D5% (2)
Explanation
Async operation tracking The HTTP response mentioned previously is designed to help implement long-running HTTP async APIs with Durable Functions. This pattern is sometimes referred to as the polling consumer Both the client and server implementations of this pattern are built into the Durable Functions You perform local testing for the RequestUserApproval function. The following error message 'Timeout value of 00:10:00 exceeded by function: RequestUserApproval' The same error message displays when you test the function in an Azure development environment when you run the following Kusto query: | where FunctionName = = "RequestUserApproval" https://docs.microsoft.com/en-us/azure/azure-functions/durable/durable-functions-http-features https://docs.microsoft.com/en-us/azure/azure-functions/durable/durable-functions- overview?tabs=csharp#human
Topics
Community Discussion
No community discussion yet for this question.


