Skip to content

Commit

Permalink
(f) entrypoint, config info and .gitignore (pkg)
Browse files Browse the repository at this point in the history
  • Loading branch information
ont committed Mar 28, 2018
1 parent ebfadfe commit 7374724
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,6 @@
# Project-local glide cache, RE: https://github.com/Masterminds/glide/issues/736
.glide/

pkg/
src/flux/flux
src/flux/vendor/
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ ADD ./src/flux/flux /flux
# RUN apk add --no-cache ca-certificates

EXPOSE 8080
ENTRYPOINT /flux
ENTRYPOINT ["/flux"]
2 changes: 1 addition & 1 deletion src/flux/debug-config.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ func PrintConfig(grammar *Grammar, debugConfig, verbose bool) {
for _, route := range grammar.Routes {
total += len(route.Metrics)
}
log.Infof("Loaded config with %s routes and %s metrics total", len(grammar.Routes), total)
log.Infof("Loaded config with %d routes and %d metrics total", len(grammar.Routes), total)
}
}

Expand Down

0 comments on commit 7374724

Please sign in to comment.