Skip to content

Commit ca972e9

Browse files
authored
Fix timeout link in Azure Function Activity doc
Updated timeout reference link in Azure Function Activity documentation.
1 parent 1a86a05 commit ca972e9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

articles/data-factory/control-flow-azure-function-activity.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ The Azure Function Activity also supports **queries**. A query must be included
9292

9393
## Timeout and long-running functions
9494

95-
Azure Functions times out after 230 seconds regardless of the `functionTimeout` setting you've configured in the settings. For more information, see [this article](../azure-functions/functions-scale.md#function-app-timeout-duration). To work around this behavior, follow an async pattern or use Durable Functions. The benefit of Durable Functions is that they offer their own state-tracking mechanism, so you don't need to implement your own state-tracking.
95+
Azure Functions times out after 230 seconds regardless of the `functionTimeout` setting you've configured in the settings. For more information, see [this article](../azure-functions/functions-scale.md#timeout). To work around this behavior, follow an async pattern or use Durable Functions. The benefit of Durable Functions is that they offer their own state-tracking mechanism, so you don't need to implement your own state-tracking.
9696

9797
Learn more about Durable Functions in [this article](../azure-functions/durable-functions/durable-functions-overview.md). You can set up an Azure Function Activity to call the Durable Function, which will return a response with a different URI, such as [this example](../azure-functions/durable-functions/durable-functions-http-features.md#http-api-url-discovery). Because `statusQueryGetUri` returns HTTP Status 202 while the function is running, you can poll the status of the function by using a Web Activity. Set up a Web Activity with the `url` field set to `@activity('<AzureFunctionActivityName>').output.statusQueryGetUri`. When the Durable Function completes, the output of the function is the output of the Web Activity.
9898

0 commit comments

Comments
 (0)