Clean workflow query invalid input errors from sentry (#18804)

As title
This commit is contained in:
Thomas Trompette
2026-03-20 17:12:25 +01:00
committed by GitHub
parent 3d49c21b51
commit a8625d8bfb
3 changed files with 24 additions and 1 deletions
@@ -55,7 +55,7 @@ export class IteratorWorkflowAction implements WorkflowActionInterface {
if (!Array.isArray(parsedItems)) {
throw new WorkflowStepExecutorException(
'Iterator input items must be an array',
WorkflowStepExecutorExceptionCode.INTERNAL_ERROR,
WorkflowStepExecutorExceptionCode.INVALID_STEP_INPUT,
);
}