mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-10 07:34:04 -08:00
cmd/prometheus: Fix capitalisation in log line (#3123)
Change 'Ready' to 'ready'.
This commit is contained in:
parent
d31c068ae4
commit
64973f5c65
|
@ -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…
Reference in a new issue