From 7f7eacf42726469e40c5cf9550086ac1339d1305 Mon Sep 17 00:00:00 2001 From: James Connor Date: Wed, 13 Oct 2021 11:00:47 +0100 Subject: [PATCH] Fixed missing setter for Forwarder CertPool Co-authored-by: Hidde Beydals Sign-off-by: Hidde Beydals --- internal/notifier/forwarder.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/notifier/forwarder.go b/internal/notifier/forwarder.go index 907badccd..8b8907679 100644 --- a/internal/notifier/forwarder.go +++ b/internal/notifier/forwarder.go @@ -46,6 +46,7 @@ func NewForwarder(hookURL string, proxyURL string, certPool *x509.CertPool) (*Fo return &Forwarder{ URL: hookURL, ProxyURL: proxyURL, + CertPool: certPool, }, nil }