From dd4cc1bd42f21d71b57e8938aadb7e374e77e8e3 Mon Sep 17 00:00:00 2001 From: David Christofas Date: Fri, 3 Mar 2023 00:57:07 +0100 Subject: [PATCH] fix eventhistory SutureService config --- services/eventhistory/pkg/command/root.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/eventhistory/pkg/command/root.go b/services/eventhistory/pkg/command/root.go index 73107f108..f2cf66389 100644 --- a/services/eventhistory/pkg/command/root.go +++ b/services/eventhistory/pkg/command/root.go @@ -43,7 +43,7 @@ type SutureService struct { // NewSutureService creates a new eventhistory.SutureService func NewSutureService(cfg *ociscfg.Config) suture.Service { - cfg.Notifications.Commons = cfg.Commons + cfg.EventHistory.Commons = cfg.Commons return SutureService{ cfg: cfg.EventHistory, }