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:
Kane York 2016-05-09 16:01:32 -07:00 committed by Jacob Hoffman-Andrews
parent b3bc3d8e41
commit 09db2e5a41
2 changed files with 2 additions and 2 deletions

2
Godeps/Godeps.json generated
View File

@ -1,7 +1,7 @@
{
"ImportPath": "github.com/letsencrypt/boulder",
"GoVersion": "go1.5",
"GodepVersion": "v63",
"GodepVersion": "v65",
"Packages": [
"./..."
],

View File

@ -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
}