Skip to content

Commit

Permalink
bump version / minor tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
vikramraman committed Aug 14, 2020
1 parent 6a93709 commit 0485444
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ OUT_DIR?=./_output
DOCKER_REPO=wavefronthq
DOCKER_IMAGE=wavefront-hpa-adapter

VERSION=0.9.4
VERSION=0.9.5
GOLANG_VERSION?=1.13
BINARY_NAME=wavefront-adapter
GIT_COMMIT:=$(shell git rev-parse --short HEAD)
Expand Down
2 changes: 1 addition & 1 deletion pkg/provider/translator.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ func (t wavefrontTranslator) MatchValuesToNames(queryResult wave.QueryResult, gr
values := make(map[string]float64, len(queryResult.Timeseries))
for _, timeseries := range queryResult.Timeseries {
length := len(timeseries.Data)
if len(timeseries.Data) == 0 {
if length == 0 {
return nil, false
}
key, found := timeseries.Tags[tagKey]
Expand Down

0 comments on commit 0485444

Please sign in to comment.