Skip to content

Commit

Permalink
Update version to v2.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
sarabala1979 committed Dec 6, 2019
1 parent 256e9a2 commit cfe5f37
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion api/openapi-spec/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"swagger": "2.0",
"info": {
"title": "Argo",
"version": "v2.4.2"
"version": "v2.4.3"
},
"paths": {},
"definitions": {
Expand Down
2 changes: 1 addition & 1 deletion errors/errors.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ type stackTracer interface {
// New returns an error with the supplied message.
// New also records the stack trace at the point it was called.
func New(code string, message string) error {
err := errors.New(message)
err := errors.New(message)
return argoerr{code, message, err.(stackTracer)}
}

Expand Down
1 change: 0 additions & 1 deletion workflow/controller/operator.go
Original file line number Diff line number Diff line change
Expand Up @@ -1155,7 +1155,6 @@ func (woc *wfOperationCtx) executeTemplate(nodeName string, orgTmpl wfv1.Templat
return retryParentNode, nil
}


// Create a new child node and append it to the retry node.
nodeName = fmt.Sprintf("%s(%d)", retryNodeName, len(retryParentNode.Children))
woc.addChildNode(retryNodeName, nodeName)
Expand Down

0 comments on commit cfe5f37

Please sign in to comment.