From 998a21637e512aec8d1944f842c51529e7bf6d44 Mon Sep 17 00:00:00 2001 From: Simon Schrottner Date: Thu, 16 Jan 2025 15:30:37 +0100 Subject: [PATCH] fix(sync): fixing missing handover of ssl configuration (#1517) Signed-off-by: Simon Schrottner --- flagd/pkg/runtime/from_config.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/flagd/pkg/runtime/from_config.go b/flagd/pkg/runtime/from_config.go index 8bdc6a039..8431fffb9 100644 --- a/flagd/pkg/runtime/from_config.go +++ b/flagd/pkg/runtime/from_config.go @@ -117,6 +117,8 @@ func FromConfig(logger *logger.Logger, version string, config Config) (*Runtime, Sources: sources, Store: s, ContextValues: config.ContextValues, + KeyPath: config.ServiceKeyPath, + CertPath: config.ServiceCertPath, }) if err != nil { return nil, fmt.Errorf("error creating sync service: %w", err)