From a255ae6b0b5a4fe7303a3e88a45269bf1d06732a Mon Sep 17 00:00:00 2001 From: mohammad-hamid Date: Thu, 10 Apr 2025 09:56:41 -0400 Subject: [PATCH] Read in cert file path from env vars (#103643) use cert file path --- pkg/setting/settings_zanzana.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/setting/settings_zanzana.go b/pkg/setting/settings_zanzana.go index 9b0c2d1c411..544b2e78faf 100644 --- a/pkg/setting/settings_zanzana.go +++ b/pkg/setting/settings_zanzana.go @@ -63,6 +63,7 @@ func (cfg *Cfg) readZanzanaSettings() { zc.Token = clientSec.Key("token").MustString("") zc.TokenExchangeURL = clientSec.Key("token_exchange_url").MustString("") zc.Addr = clientSec.Key("address").MustString("") + zc.ServerCertFile = clientSec.Key("tls_cert").MustString("") cfg.ZanzanaClient = zc