(ctx context.Context, node *wfv1.NodeStatus, displayName string)
| 4578 | } |
| 4579 | |
| 4580 | func (woc *wfOperationCtx) setNodeDisplayName(ctx context.Context, node *wfv1.NodeStatus, displayName string) { |
| 4581 | nodeID := node.ID |
| 4582 | newNode := node.DeepCopy() |
| 4583 | newNode.DisplayName = displayName |
| 4584 | woc.wf.Status.Nodes.Set(ctx, nodeID, *newNode) |
| 4585 | } |
| 4586 | |
| 4587 | func (woc *wfOperationCtx) updateLastSeenVersionAnnotation(value string) { |
| 4588 | if woc.wf.GetAnnotations() == nil { |
no test coverage detected