Ayoub Faouzi
Ayoub Faouzi
@lysShub thanks for your feedback. I agree we should check exit code regarding point number 1. For point 2: do you know if verify does grab the lastest certs ?
Thanks a lot @lysShub, I should be able to fix this by the end of the week
Hey @lysShub `-verify` requires us to first download the certs, so do we have to first run the sync then in subsequent commands do the verification ? Can you post...
I see, does this work prior to go v1.22 ?
 Verify is just a wrapper over `VerityWithChain`. It does not seem to do that?
ah here: https://github.com/golang/go/blob/go1.22.0/src/crypto/x509/verify.go#L770, let me check that
```go // Let's load the system root certs. if !pe.opts.DisableCertValidation { certValid = pkcs.Verify() == nil } ``` The unit tests fails when I changed it as above. Can you...
Just some context: It used to work in go v1.20, when I upgraded to v1.23, I started seeing this issue.
That actually worked, thank you @aarzilli .
Thanks a lot. Can you post the output of: `go test`.