Skip to content
This repository was archived by the owner on Jun 2, 2025. It is now read-only.

Commit 3b93f78

Browse files
authored
Fix hub subscription pod crash on invalid cert (#422)
Signed-off-by: fxiang1 <[email protected]>
1 parent 1a68f15 commit 3b93f78

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/utils/aws/objectstore.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ func createCustomTLSConfig(objInsecureSkipVerify, objCaCert string) *tls.Config
131131
// Add custom root CA certificate (for private/enterprise S3-compatible stores)
132132
rootCAPool := x509.NewCertPool()
133133
if !rootCAPool.AppendCertsFromPEM([]byte(objCaCert)) {
134-
klog.Fatalf("Failed to parse root CA certificate")
134+
klog.Infof("Failed to parse root CA certificate")
135135
return tlsConfig
136136
}
137137

0 commit comments

Comments
 (0)