Revert "[filer] void panic if s3opt.tlsCACertificate is nill" (#6694)

Revert "[filer] void panic if s3opt.tlsCACertificate is nill (#6685)"

This reverts commit 4dca59ed27.
This commit is contained in:
Konstantin Lebedev
2025-04-07 23:09:40 +05:00
committed by GitHub
parent 4dca59ed27
commit aa9121aa9d
2 changed files with 1 additions and 2 deletions

View File

@@ -312,7 +312,7 @@ func (s3opt *S3Options) startS3Server() bool {
}
caCertPool := x509.NewCertPool()
if s3opt.tlsCACertificate != nil && *s3opt.tlsCACertificate != "" {
if *s3opt.tlsCACertificate != "" {
// load CA certificate file and add it to list of client CAs
caCertFile, err := ioutil.ReadFile(*s3opt.tlsCACertificate)
if err != nil {