fix(10-06): fix batch actions routing to use sub-workflow

- Add exclusion condition to Route Callback rule 4 (isBatch)
- Rule now requires isBatch=true AND isBatchExec!=true
- Ensures batch execution callbacks route to Handle Batch Exec (output 17)
- Prevents bypass to old Build Batch Commands inline path (output 4)
This commit is contained in:
Lucas Berger
2026-02-04 14:52:44 -05:00
parent ed0e0e7ba2
commit 807583dfff
+9
View File
@@ -883,6 +883,15 @@
"type": "boolean",
"operation": "equals"
}
},
{
"id": "not-batch-exec",
"leftValue": "={{ $json.isBatchExec }}",
"rightValue": true,
"operator": {
"type": "boolean",
"operation": "notEquals"
}
}
],
"combinator": "and"