Browse Source

Fix misspelling in onDemandAskRequest error (#3308)

master
Christoffer Andersson 5 years ago
committed by GitHub
parent
commit
a6761153cb
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      modules/caddytls/acmeissuer.go

2
modules/caddytls/acmeissuer.go

@ -206,7 +206,7 @@ func onDemandAskRequest(ask string, name string) error {
resp, err := onDemandAskClient.Get(askURL.String())
if err != nil {
return fmt.Errorf("error checking %v to deterine if certificate for hostname '%s' should be allowed: %v",
return fmt.Errorf("error checking %v to determine if certificate for hostname '%s' should be allowed: %v",
ask, name, err)
}
resp.Body.Close()

Loading…
Cancel
Save