fix(10.1-05): fix Route Action connections in status sub-workflow
Switch node connections must use "main" array format with indices,
not named output keys. Changed from:
{ "list": [...], "status": [...] }
to:
{ "main": [ [...], [...], [...] ] }
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
+4
-8
@@ -276,25 +276,21 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"Route Action": {
|
"Route Action": {
|
||||||
"list": [
|
"main": [
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
"node": "Prepare List Request",
|
"node": "Prepare List Request",
|
||||||
"type": "main",
|
"type": "main",
|
||||||
"index": 0
|
"index": 0
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
],
|
|
||||||
"status": [
|
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
"node": "Prepare Status Request",
|
"node": "Prepare Status Request",
|
||||||
"type": "main",
|
"type": "main",
|
||||||
"index": 0
|
"index": 0
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
],
|
|
||||||
"paginate": [
|
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
"node": "Prepare Paginate Request",
|
"node": "Prepare Paginate Request",
|
||||||
@@ -381,4 +377,4 @@
|
|||||||
},
|
},
|
||||||
"staticData": null,
|
"staticData": null,
|
||||||
"tags": []
|
"tags": []
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user