Fixed a typo in error msg.

This commit is contained in:
Anders Petersson 2018-05-27 19:52:05 +02:00 committed by GitHub
parent 33210637fd
commit 6d5b199d74
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -510,7 +510,7 @@ func getRemainingAuthorizations(ctx context.Context, cl client.Interface, urls .
return nil, err
}
if a.Status == acme.StatusInvalid || a.Status == acme.StatusDeactivated || a.Status == acme.StatusRevoked {
return nil, fmt.Errorf("authorization for dmain %q is in a failed state", a.Identifier.Value)
return nil, fmt.Errorf("authorization for domain %q is in a failed state", a.Identifier.Value)
}
if a.Status == acme.StatusPending {
authzs = append(authzs, a)