mirror of https://github.com/jackc/pgx.git
Handle errors in generate_certs
parent
ad87d47089
commit
043685147f
|
@ -106,12 +106,12 @@ func main() {
|
||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
writeEncryptedPrivateKey("pgx_sslcert.key", clientCertPrivKey, "certpw")
|
err = writeEncryptedPrivateKey("pgx_sslcert.key", clientCertPrivKey, "certpw")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
writeCertificate("pgx_sslcert.crt", clientBytes)
|
err = writeCertificate("pgx_sslcert.crt", clientBytes)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue