Merge pull request #3037 from KalivarapuReshma/single-dash-error

Change -config.file to --config.file in Readme and error message
This commit is contained in:
Goutham Veeramachaneni 2017-08-09 08:03:43 +05:30 committed by GitHub
commit 3bee362727
2 changed files with 4 additions and 4 deletions

View file

@ -66,7 +66,7 @@ vendoring feature, so you will also need to set the `GO15VENDOREXPERIMENT=1`
environment variable in this case:
$ GO15VENDOREXPERIMENT=1 go get github.com/prometheus/prometheus/cmd/...
$ prometheus -config.file=your_config.yml
$ prometheus --config.file=your_config.yml
You can also clone the repository yourself and build using `make`:
@ -75,7 +75,7 @@ You can also clone the repository yourself and build using `make`:
$ git clone https://github.com/prometheus/prometheus.git
$ cd prometheus
$ make build
$ ./prometheus -config.file=your_config.yml
$ ./prometheus --config.file=your_config.yml
The Makefile provides several targets:

View file

@ -362,7 +362,7 @@ func reloadConfig(filename string, logger log.Logger, rls ...Reloadable) (err er
conf, err := config.LoadFile(filename)
if err != nil {
return fmt.Errorf("couldn't load configuration (-config.file=%s): %v", filename, err)
return fmt.Errorf("couldn't load configuration (--config.file=%s): %v", filename, err)
}
failed := false
@ -373,7 +373,7 @@ func reloadConfig(filename string, logger log.Logger, rls ...Reloadable) (err er
}
}
if failed {
return fmt.Errorf("one or more errors occurred while applying the new configuration (-config.file=%s)", filename)
return fmt.Errorf("one or more errors occurred while applying the new configuration (--config.file=%s)", filename)
}
return nil
}