Skip to content

Commit

Permalink
fix: use correct context
Browse files Browse the repository at this point in the history
  • Loading branch information
aeneasr committed Aug 1, 2022
1 parent c6e4266 commit 665b98c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/server/helper_cert.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,11 @@ func GetOrCreateTLSCertificate(ctx context.Context, cmd *cobra.Command, d driver
}

AttachCertificate(priv, cert)
if err := d.SoftwareKeyManager().DeleteKey(context.TODO(), TlsKeyName, priv.KeyID); err != nil {
if err := d.SoftwareKeyManager().DeleteKey(ctx, TlsKeyName, priv.KeyID); err != nil {
d.Logger().WithError(err).Fatal(`Could not update (delete) the self signed TLS certificate`)
}

if err := d.SoftwareKeyManager().AddKey(context.TODO(), TlsKeyName, priv); err != nil {
if err := d.SoftwareKeyManager().AddKey(ctx, TlsKeyName, priv); err != nil {
d.Logger().WithError(err).Fatalf(`Could not update (add) the self signed TLS certificate: %s %x %d`, cert.SignatureAlgorithm, cert.Signature, len(cert.Signature))
}
}
Expand Down

0 comments on commit 665b98c

Please sign in to comment.