Skip to content

Commit

Permalink
Saas 7239 (#133)
Browse files Browse the repository at this point in the history
Fix kube-node-selector
  • Loading branch information
oren-codefresh authored May 25, 2020
1 parent 433056e commit 60906c0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "venona",
"version": "1.2.9",
"version": "1.2.10",
"description": "Codefresh agent to run on Codefresh's runtime environment and execute pipeline",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion venonactl/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.2.9
1.2.10
2 changes: 1 addition & 1 deletion venonactl/cmd/cmdutils.go
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ func extendStoreWithAgentAPI(logger logger.Logger, token string, agentID string)
func (ns nodeSelector) String() string {
var s string
for k, v := range ns {
s = fmt.Sprintf("%s: %q", k, v)
s = fmt.Sprintf("%s: %s", k, v)
}
return s
}
Expand Down

0 comments on commit 60906c0

Please sign in to comment.