mirror of
https://github.com/prometheus/prometheus.git
synced 2025-03-05 20:59:13 -08:00
main.go: Remove warning about external_labels
This commit is contained in:
parent
aa3fff1e67
commit
7da42eee6e
|
@ -205,10 +205,6 @@ func reloadConfig(filename string, rls ...Reloadable) (success bool) {
|
|||
conf, err := config.LoadFile(filename)
|
||||
if err != nil {
|
||||
log.Errorf("Couldn't load configuration (-config.file=%s): %v", filename, err)
|
||||
// TODO(julius): Remove this notice when releasing 0.17.0 or 0.18.0.
|
||||
if err.Error() == "unknown fields in global config: labels" {
|
||||
log.Errorf("NOTE: The 'labels' setting in the global configuration section has been renamed to 'external_labels' and now has changed semantics (see release notes at https://github.com/prometheus/prometheus/blob/master/CHANGELOG.md). Please update your configuration file accordingly.")
|
||||
}
|
||||
return false
|
||||
}
|
||||
success = true
|
||||
|
|
Loading…
Reference in a new issue