Remove noisy tls error

Signed-off-by: Bryan Frimin <bryan@getprobo.com>
This commit is contained in:
Bryan Frimin
2026-02-05 08:48:32 +01:00
parent ad5a0358d4
commit 8e8288a361

View File

@@ -797,6 +797,9 @@ func (impl *Implm) runTrustCenterServer(
if errors.As(err, &noSNIErr) {
return nil, nil
}
if errors.Is(err, coredata.ErrResourceNotFound) {
return nil, nil
}
}
return cert, err
},