(ctx context.Context, err error)
| 2768 | } |
| 2769 | |
| 2770 | func (woc *wfOperationCtx) markWorkflowError(ctx context.Context, err error) { |
| 2771 | woc.markWorkflowPhase(ctx, wfv1.WorkflowError, err.Error()) |
| 2772 | } |
| 2773 | |
| 2774 | // stepsOrDagSeparator identifies if a node name starts with our naming convention separator from |
| 2775 | // DAG or steps templates. Will match stings with prefix like: [0]. or . |
no test coverage detected