mirror of
https://github.com/prometheus/prometheus.git
synced 2024-12-25 13:44:05 -08:00
autoreload: do not ignore errors
Signed-off-by: Julien <roidelapluie@o11y.eu>
This commit is contained in:
parent
cfe8b5616f
commit
2c553b1772
|
@ -36,7 +36,10 @@ func GenerateChecksum(yamlFilePath string) (string, error) {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return "", fmt.Errorf("error reading YAML file: %w", err)
|
return "", fmt.Errorf("error reading YAML file: %w", err)
|
||||||
}
|
}
|
||||||
_, _ = hash.Write(yamlContent)
|
_, err = hash.Write(yamlContent)
|
||||||
|
if err != nil {
|
||||||
|
return "", fmt.Errorf("error writing YAML file to hash: %w", err)
|
||||||
|
}
|
||||||
|
|
||||||
var config ExternalFilesConfig
|
var config ExternalFilesConfig
|
||||||
if err := yaml.Unmarshal(yamlContent, &config); err != nil {
|
if err := yaml.Unmarshal(yamlContent, &config); err != nil {
|
||||||
|
@ -61,23 +64,26 @@ func GenerateChecksum(yamlFilePath string) (string, error) {
|
||||||
for _, pattern := range files[prefix] {
|
for _, pattern := range files[prefix] {
|
||||||
matchingFiles, err := filepath.Glob(pattern)
|
matchingFiles, err := filepath.Glob(pattern)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return "", fmt.Errorf("error finding files with pattern %s: %w", pattern, err)
|
return "", fmt.Errorf("error finding files with pattern %q: %w", pattern, err)
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, file := range matchingFiles {
|
for _, file := range matchingFiles {
|
||||||
// Write prefix to the hash ("r" or "s") followed by \0.
|
// Write prefix to the hash ("r" or "s") followed by \0, then
|
||||||
_, _ = hash.Write([]byte(prefix + "\x00"))
|
// the file path.
|
||||||
|
_, err = hash.Write([]byte(prefix + "\x00" + file + "\x00"))
|
||||||
// Write the file path to the hash, followed by \0 to ensure
|
if err != nil {
|
||||||
// separation.
|
return "", fmt.Errorf("error writing %q path to hash: %w", file, err)
|
||||||
_, _ = hash.Write([]byte(file + "\x00"))
|
}
|
||||||
|
|
||||||
// Read and hash the content of the file.
|
// Read and hash the content of the file.
|
||||||
content, err := os.ReadFile(file)
|
content, err := os.ReadFile(file)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return "", fmt.Errorf("error reading file %s: %w", file, err)
|
return "", fmt.Errorf("error reading file %s: %w", file, err)
|
||||||
}
|
}
|
||||||
_, _ = hash.Write(append(content, []byte("\x00")...))
|
_, err = hash.Write(append(content, []byte("\x00")...))
|
||||||
|
if err != nil {
|
||||||
|
return "", fmt.Errorf("error writing %q content to hash: %w", file, err)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue