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:
Lucas Berger
2026-02-04 21:52:36 -05:00
parent 58e4fbdbbe
commit 99612a9649
+3 -7
View File
@@ -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",