Browse Source

Fix spelling mistake

Signed-off-by: Erik Wilson <Erik.E.Wilson@gmail.com>
pull/2744/head
Erik Wilson 4 years ago
parent
commit
2fb411fc83
  1. 2
      pkg/server/router.go

2
pkg/server/router.go

@ -329,7 +329,7 @@ func verifyLocalPassword(ctx context.Context, config *Config, once *sync.Once, n
passBytes, err := ioutil.ReadFile(nodePasswordFile) passBytes, err := ioutil.ReadFile(nodePasswordFile)
if err != nil { if err != nil {
return "", http.StatusInternalServerError, errors.Wrap(err, "unabled to read node password file") return "", http.StatusInternalServerError, errors.Wrap(err, "unable to read node password file")
} }
password := strings.TrimSpace(string(passBytes)) password := strings.TrimSpace(string(passBytes))

Loading…
Cancel
Save