Skip to content

Commit

Permalink
Merge pull request #1251 from christopherhein/bug/componentconfig-err…
Browse files Browse the repository at this point in the history
…or-handling

✨ Updating Component Config error messages
  • Loading branch information
k8s-ci-robot committed Nov 9, 2020
2 parents 8d01076 + 12a68d5 commit 9f0367a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ func (d *DeferredFileLoader) loadFile() {

content, err := ioutil.ReadFile(d.path)
if err != nil {
d.err = fmt.Errorf("file could not be read from filesystem")
d.err = fmt.Errorf("could not read file at %s", d.path)
return
}

Expand Down

0 comments on commit 9f0367a

Please sign in to comment.