Fix error path call in IssueCertificate rpc wrapper (#1799)
* Fix error path call in IssueCertificate rpc wrapper * Bump godeps version
This commit is contained in:
parent
b3bc3d8e41
commit
09db2e5a41
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"ImportPath": "github.com/letsencrypt/boulder",
|
||||
"GoVersion": "go1.5",
|
||||
"GodepVersion": "v63",
|
||||
"GodepVersion": "v65",
|
||||
"Packages": [
|
||||
"./..."
|
||||
],
|
||||
|
|
|
@ -736,7 +736,7 @@ func NewCertificateAuthorityServer(rpc Server, impl core.CertificateAuthority) (
|
|||
response, err = json.Marshal(cert)
|
||||
if err != nil {
|
||||
// AUDIT[ Error Conditions ] 9cc4d537-8534-4970-8665-4b382abe82f3
|
||||
errorCondition(MethodGetRegistration, err, req)
|
||||
errorCondition(MethodIssueCertificate, err, req)
|
||||
return
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue