Fix extra write header.

This commit is contained in:
Mariano Cano 2019-11-21 19:06:19 -08:00 committed by max furman
parent 85d3843968
commit 4f08a7816f
2 changed files with 4 additions and 6 deletions

View file

@ -71,8 +71,7 @@ func (h *caHandler) SSHRekey(w http.ResponseWriter, r *http.Request) {
return return
} }
w.WriteHeader(http.StatusCreated) JSONStatus(w, &SSHSignResponse{
JSON(w, &SSHSignResponse{
Certificate: SSHCertificate{newCert}, Certificate: SSHCertificate{newCert},
}) }, http.StatusCreated)
} }

View file

@ -61,8 +61,7 @@ func (h *caHandler) SSHRenew(w http.ResponseWriter, r *http.Request) {
return return
} }
w.WriteHeader(http.StatusCreated) JSONStatus(w, &SSHSignResponse{
JSON(w, &SSHSignResponse{
Certificate: SSHCertificate{newCert}, Certificate: SSHCertificate{newCert},
}) }, http.StatusCreated)
} }