Skip to content

Commit ce9ddeb

Browse files
authored
Merge pull request #180611 from ssabat/master
Added TSG for using createArray to force parameter passing
2 parents 4840535 + 9179c08 commit ce9ddeb

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

articles/data-factory/pipeline-trigger-troubleshoot-guide.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Troubleshoot pipeline orchestration and triggers in Azure Data Factory
33
description: Use different methods to troubleshoot pipeline trigger issues in Azure Data Factory.
44
author: ssabat
55
ms.service: data-factory
6-
ms.date: 08/17/2021
6+
ms.date: 11/17/2021
77
ms.subservice: troubleshooting
88
ms.topic: troubleshooting
99
ms.author: susabat
@@ -258,6 +258,17 @@ You have not optimized mapping data flow.
258258
* Adjust the partitions at the source and sink accordingly.
259259
* Review [Data Flow Optimizations](concepts-data-flow-performance.md)
260260

261+
### Error Code "BadRequest" when passing parameters to child pipelines
262+
263+
**Cause**
264+
265+
Failure type is user configuration issue. String of parameters, instead of Array, is passed to to child pipeline.
266+
267+
**Resolution**
268+
269+
Input **execute pipeline** activity for pipeline parameter as *@createArray('a','b')* for example, if you want to pass parameters 'a' and 'b'. If you want to pass numbers, for example, use *@createArray(1,2,3)*. Use createArray function to force parameters being passed as an array.
270+
271+
261272
## Next steps
262273

263274
For more troubleshooting help, try these resources:

0 commit comments

Comments
 (0)