Skip to content

Commit fdf19a2

Browse files
committed
Change default time in timeout to 10 minutes
1 parent d4b4bf0 commit fdf19a2

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

articles/data-factory/control-flow-until-activity.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ To use an Until activity in a pipeline, complete the following steps:
4444
"value": "<expression that evaluates to true or false>",
4545
"type": "Expression"
4646
},
47-
"timeout": "<time out for the loop. for example: 00:01:00 (1 minute)>",
47+
"timeout": "<time out for the loop. for example: 00:10:00 (10 minute)>",
4848
"activities": [
4949
{
5050
"<Activity 1 definition>"
@@ -92,7 +92,7 @@ In this example, the pipeline has two activities: **Until** and **Wait**. The Wa
9292
"value": "@equals('Failed', coalesce(body('MyUnauthenticatedActivity')?.status, actions('MyUnauthenticatedActivity')?.status, 'null'))",
9393
"type": "Expression"
9494
},
95-
"timeout": "00:00:01",
95+
"timeout": "00:10:00",
9696
"activities": [
9797
{
9898
"name": "MyUnauthenticatedActivity",
@@ -145,7 +145,7 @@ The pipeline in this sample copies data from an input folder to an output folder
145145
"value": "@equals('false', pipeline().parameters.repeat)",
146146
"type": "Expression"
147147
},
148-
"timeout": "00:01:00",
148+
"timeout": "00:10:00",
149149
"activities": [
150150
{
151151
"name": "CopyFromBlobToBlob",

articles/data-factory/control-flow-wait-activity.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ In this example, the pipeline has two activities: **Until** and **Wait**. The Wa
6868
"value": "@equals('Failed', coalesce(body('MyUnauthenticatedActivity')?.status, actions('MyUnauthenticatedActivity')?.status, 'null'))",
6969
"type": "Expression"
7070
},
71-
"timeout": "00:00:01",
71+
"timeout": "00:10:00",
7272
"activities": [
7373
{
7474
"name": "MyUnauthenticatedActivity",

articles/data-factory/control-flow-webhook-activity.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ To use a Webhook activity in a pipeline, complete the following steps:
4949
"body": {
5050
"key": "value"
5151
},
52-
"timeout": "00:03:00",
52+
"timeout": "00:10:00",
5353
"reportStatusOnCallBack": false,
5454
"authentication": {
5555
"type": "ClientCertificate",

0 commit comments

Comments
 (0)