From aae7f2aa1c1451d48ece8f719b589667d07ea687 Mon Sep 17 00:00:00 2001 From: Ildar Nurislamov Date: Thu, 25 Jan 2024 15:52:51 +0400 Subject: [PATCH] fix --- ingest/repository.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ingest/repository.go b/ingest/repository.go index 4e4876a..cdc9048 100644 --- a/ingest/repository.go +++ b/ingest/repository.go @@ -15,6 +15,10 @@ type RepositoryConfig struct { RepositoryRefreshPeriodSec int `mapstructure:"REPOSITORY_REFRESH_PERIOD_SEC" default:"2"` } +func (r *RepositoryConfig) PostInit(settings *appbase.AppSettings) error { + return nil +} + type Streams struct { streams []*StreamWithDestinations apiKeyBindings map[string]*ApiKeyBinding