Skip to content

Commit

Permalink
Update CLI for upsert search attribute, and bump CLI version (#2165)
Browse files Browse the repository at this point in the history
* Bump CLI verison for upsert search attribute
* Bump version to 0.6.4
  • Loading branch information
vancexu authored and yux0 committed Jul 3, 2019
1 parent 13096f9 commit 23e2ec9
Show file tree
Hide file tree
Showing 3 changed files with 110 additions and 11 deletions.
116 changes: 106 additions & 10 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tools/cli/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import (
const (
// Version is the controlled version string. It should be updated every time
// before we release a new version.
Version = "0.6.3"
Version = "0.6.4"
)

// NewCliApp instantiates a new instance of the CLI application.
Expand Down
3 changes: 3 additions & 0 deletions tools/cli/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -322,6 +322,9 @@ func ColorEvent(e *s.HistoryEvent) string {
case s.EventTypeExternalWorkflowExecutionSignaled:
data = e.EventType.String()

case s.EventTypeUpsertWorkflowSearchAttributes:
data = e.EventType.String()

default:
data = e.EventType.String()
}
Expand Down

0 comments on commit 23e2ec9

Please sign in to comment.