Browse Source

cmd/prometheus: Fix capitalisation in log line (#3123)

Change 'Ready' to 'ready'.
pull/3133/head
Matt Bostock 7 years ago committed by Brian Brazil
parent
commit
64973f5c65
  1. 2
      cmd/prometheus/main.go

2
cmd/prometheus/main.go

@ -331,7 +331,7 @@ func main() {
// Set web server to ready. // Set web server to ready.
webHandler.Ready() webHandler.Ready()
log.Info("Server is Ready to receive requests.") log.Info("Server is ready to receive requests.")
term := make(chan os.Signal) term := make(chan os.Signal)
signal.Notify(term, os.Interrupt, syscall.SIGTERM) signal.Notify(term, os.Interrupt, syscall.SIGTERM)

Loading…
Cancel
Save