Skip to content

Commit

Permalink
Merge pull request letsencrypt#278 from letsencrypt/test-fail
Browse files Browse the repository at this point in the history
Fix a bug introduced in 81fa97f and make ./start.sh work
  • Loading branch information
bifurcation committed Jun 1, 2015
2 parents dbff11e + 63ca502 commit b7e20ca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions test/boulder-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"issuerCert": "test/test-ca.pem",
"_comment": "This should only be present in testMode. In prod use an HSM.",
"issuerKey": "test/test-ca.key",
"expiry": "8760h",
"expiry": "2160h",
"maxNames": 1000
},

Expand All @@ -57,7 +57,7 @@

"sql": {
"SQLDebug": true,
"CreateTables": false
"CreateTables": true
},

"revoker": {
Expand Down
2 changes: 1 addition & 1 deletion wfe/web-front-end.go
Original file line number Diff line number Diff line change
Expand Up @@ -575,7 +575,7 @@ func (wfe *WebFrontEndImpl) Registration(response http.ResponseWriter, request *
}

// Ask the RA to update this authorization.
updatedReg, err := wfe.RA.UpdateRegistration(currReg, currReg)
updatedReg, err := wfe.RA.UpdateRegistration(currReg, update)
if err != nil {
wfe.sendError(response, "Unable to update registration", err, statusCodeFromError(err))
return
Expand Down

0 comments on commit b7e20ca

Please sign in to comment.