Skip to content

Commit

Permalink
release 0.2.8
Browse files Browse the repository at this point in the history
  • Loading branch information
fstab committed Jun 28, 2019
1 parent eabf96e commit 6342bf7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions grok_exporter.go
Original file line number Diff line number Diff line change
Expand Up @@ -151,9 +151,9 @@ func startMsg(cfg *v2.Config, httpHandlers []exporter.HttpServerPathHandler) str

var sb strings.Builder
baseUrl := fmt.Sprintf("%v://%v:%v", cfg.Server.Protocol, host, cfg.Server.Port)
sb.WriteString(fmt.Sprintf("Starting server on %v", baseUrl))
sb.WriteString("Starting server on")
for _, httpHandler := range httpHandlers {
sb.WriteString(fmt.Sprintf("\n %v%v", baseUrl, httpHandler.Path))
sb.WriteString(fmt.Sprintf(" %v%v", baseUrl, httpHandler.Path))
}
sb.WriteString("\n")
return sb.String()
Expand Down
2 changes: 1 addition & 1 deletion release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export GO111MODULE=on

cd $GOPATH/src/github.com/fstab/grok_exporter

export VERSION=0.2.8-SNAPSHOT
export VERSION=0.2.8

export VERSION_FLAGS="\
-X github.com/fstab/grok_exporter/exporter.Version=$VERSION
Expand Down

0 comments on commit 6342bf7

Please sign in to comment.