Add stordb pgSSLCertMode option

This commit is contained in:
ionutboangiu
2024-08-09 20:15:35 +03:00
committed by Dan Christian Bogos
parent 9a79b092a5
commit 73fc386036
11 changed files with 51 additions and 21 deletions

View File

@@ -200,5 +200,6 @@ func (db *StorDBService) needsConnectionReload() bool {
db.oldDBCfg.Opts.PgSSLCert != db.cfg.StorDbCfg().Opts.PgSSLCert ||
db.oldDBCfg.Opts.PgSSLKey != db.cfg.StorDbCfg().Opts.PgSSLKey ||
db.oldDBCfg.Opts.PgSSLPassword != db.cfg.StorDbCfg().Opts.PgSSLPassword ||
db.oldDBCfg.Opts.PgSSLCertMode != db.cfg.StorDbCfg().Opts.PgSSLCertMode ||
db.oldDBCfg.Opts.PgSSLRootCert != db.cfg.StorDbCfg().Opts.PgSSLRootCert)
}