You need to correct the RequestUserApproval Function app error. What should you do? A. Update line RA13 to use the async keyword and return an HttpRequest object value. B. Configure the Function app to use an App Service hosting plan. Enable the Always On setting of the hosting plan. C. Update the function to be stateful by using Durable Functions to process the request payload. D. Update the functionTimeout property of the host.json project file to 15 minutes. Â Suggested Answer: C 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 pattern. Both the client and server implementations of this pattern are built into the Durable Functions HTTP APIs. Function app - You perform local testing for the RequestUserApproval function. The following error message displays: '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: FunctionAppLogs - | where FunctionName = = "RequestUserApproval" Reference: https://docs.microsoft.com/en-us/azure/azure-functions/durable/durable-functions-http-features This question is in AZ-204: Developing Solutions for Microsoft Azure Exam For getting Microsoft Azure Developer Associate Certificate Disclaimers: The website is not related to, affiliated with, endorsed or authorized by Microsoft. The website does not contain actual questions and answers from Microsoft's Certification Exams. Trademarks, certification & product names are used for reference only and belong to Microsoft.
Please login or Register to submit your answer