(ctx context.Context, message string)
| 2764 | } |
| 2765 | |
| 2766 | func (woc *wfOperationCtx) markWorkflowFailed(ctx context.Context, message string) { |
| 2767 | woc.markWorkflowPhase(ctx, wfv1.WorkflowFailed, message) |
| 2768 | } |
| 2769 | |
| 2770 | func (woc *wfOperationCtx) markWorkflowError(ctx context.Context, err error) { |
| 2771 | woc.markWorkflowPhase(ctx, wfv1.WorkflowError, err.Error()) |
no test coverage detected