Imrove some comments

This commit is contained in:
Andrew Ayer 2025-06-17 10:52:32 -04:00
parent b05a66f634
commit 53029c2a09

View File

@ -107,8 +107,15 @@ func processCertificate(ctx context.Context, config *Config, entry *LogEntry, ce
} }
chain, chainErr := getChain(ctx) chain, chainErr := getChain(ctx)
if errors.Is(chainErr, context.Canceled) { if chainErr != nil {
return chainErr if ctx.Err() != nil {
// Getting chain failed, but it was probably because our context
// has been canceled, so just act like we never called getChain.
return ctx.Err()
}
// Although getting the chain failed, we still want to notify
// the user about the matching certificate. We'll include chainErr in the
// notification so the user knows why the chain is missing or incorrect.
} }
cert := &DiscoveredCert{ cert := &DiscoveredCert{